-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(optimizer): functional components (#130)
- Loading branch information
1 parent
40f0adc
commit 0cfa168
Showing
48 changed files
with
3,023 additions
and
1,255 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.