Skip to content

Commit

Permalink
feat(optimizer): functional components (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat authored Jan 24, 2022
1 parent 40f0adc commit 0cfa168
Show file tree
Hide file tree
Showing 48 changed files with 3,023 additions and 1,255 deletions.
27 changes: 27 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
.history
.vscode
dist
dist-dev
bazel-*
node_modules
tsc-out
external
*.
**/*.log
etc
temp
tsdoc-metadata.json
**/.DS_Store
integration/out/
integration/todo/output
integration/*.js
integration/*.cjs
integration/*.map
cypress/screenshots
cypress/videos
cypress/fixtures/
src/napi/package-*
target
*.node
todo-express/
qwik-app/
107 changes: 53 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM node:16.12.0-buster

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ADD . /
ENV PATH="/root/.cargo/bin:${PATH}"
RUN make install-rust-deps
RUN npm install
RUN npm run build
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
install-rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y

install-rust-deps:
rustup update
rustup target add wasm32-unknown-unknown
cargo install cargo-insta
cargo install wasm-pack
rustup component add clippy
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0cfa168

Please sign in to comment.