Skip to content

Commit 0cfa168

Browse files
authored
feat(optimizer): functional components (#130)
1 parent 40f0adc commit 0cfa168

File tree

48 files changed

+3023
-1255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+3023
-1255
lines changed

.dockerignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.history
2+
.vscode
3+
dist
4+
dist-dev
5+
bazel-*
6+
node_modules
7+
tsc-out
8+
external
9+
*.
10+
**/*.log
11+
etc
12+
temp
13+
tsdoc-metadata.json
14+
**/.DS_Store
15+
integration/out/
16+
integration/todo/output
17+
integration/*.js
18+
integration/*.cjs
19+
integration/*.map
20+
cypress/screenshots
21+
cypress/videos
22+
cypress/fixtures/
23+
src/napi/package-*
24+
target
25+
*.node
26+
todo-express/
27+
qwik-app/

Cargo.lock

Lines changed: 53 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM node:16.12.0-buster
2+
3+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
4+
ADD . /
5+
ENV PATH="/root/.cargo/bin:${PATH}"
6+
RUN make install-rust-deps
7+
RUN npm install
8+
RUN npm run build

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
install-rust:
2-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
2+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
33

44
install-rust-deps:
55
rustup update
6+
rustup target add wasm32-unknown-unknown
67
cargo install cargo-insta
78
cargo install wasm-pack
89
rustup component add clippy

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)