forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into static-site-adapter-docs
- Loading branch information
Showing
1,272 changed files
with
66,082 additions
and
15,258 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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
FROM cimg/rust:1.65.0-node | ||
FROM cimg/rust:1.72.1-node | ||
|
||
RUN rustup toolchain install nightly-2022-09-23; \ | ||
rustup default nightly-2022-09-23; \ | ||
rustup --version; \ | ||
RUN rustup --version; \ | ||
cargo --version; \ | ||
rustc --version; \ | ||
rustup update; \ | ||
rustc --version; | ||
|
||
RUN rustup update; \ | ||
rustup target add wasm32-unknown-unknown; \ | ||
cargo install cargo-insta wasm-pack; \ | ||
cargo install cargo-insta; \ | ||
cargo install wasm-pack; \ | ||
rustup component add clippy; \ | ||
corepack enable --install-directory ~/bin | ||
|
||
RUN mkdir /home/circleci/store; \ | ||
pnpm config set store-dir /home/circleci/store |
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
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
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
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
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
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,22 @@ | ||
name: Qwik PR Checks | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
- ready_for_review | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
############ SEMANTIC PR TITLE VALIDATION ############ | ||
semantic-pr: | ||
name: Validate PR title | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
@@ -1,28 +1,44 @@ | ||
# Keep "OS" and "IDE and local environment" ignores on your local machine in user home | ||
# git config --global core.excludesFile ~/.gitignore | ||
# https://git-scm.com/docs/gitignore | ||
|
||
# OS | ||
**/.DS_Store | ||
etc | ||
temp | ||
.history | ||
.vscode/settings.json | ||
dist | ||
lib | ||
dist-dev | ||
node_modules | ||
tsc-out | ||
external | ||
*. | ||
**/*.log | ||
etc | ||
temp | ||
tsdoc-metadata.json | ||
**/.DS_Store | ||
src/napi/package-* | ||
target | ||
!/packages/docs/src/routes/demo/events/target | ||
*.node | ||
todo-express/ | ||
|
||
# Application | ||
qwik-app/ | ||
**/server/ | ||
todo-express/ | ||
target | ||
!/packages/docs/src/routes/demo/events/target | ||
src/napi/package-* | ||
|
||
# Node | ||
node_modules | ||
|
||
# Artifacts | ||
tsc-out | ||
dist | ||
dist-dev | ||
external | ||
lib | ||
tsdoc-metadata.json | ||
|
||
# IDE and local environment | ||
.vscode/settings.json | ||
.idea | ||
.eslintcache | ||
|
||
# Yarn | ||
# Package Managers | ||
.yarn/* | ||
!.yarn/releases | ||
.pnpm-store/* | ||
|
||
# Local Netlify folder | ||
.netlify |
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 |
---|---|---|
@@ -1 +1 @@ | ||
16 | ||
18.11 |
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
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
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,14 @@ | ||
{ | ||
"recommendations": [ | ||
"dbaeumer.vscode-eslint", | ||
"unifiedjs.vscode-mdx", | ||
"esbenp.prettier-vscode", | ||
"ms-playwright.playwright", | ||
"rust-lang.rust-analyzer", | ||
"ms-azuretools.vscode-docker", | ||
"manucorporat.vermoji", | ||
"vadimcn.vscode-lldb", | ||
"streetsidesoftware.code-spell-checker" | ||
], | ||
"unwantedRecommendations": [] | ||
} |
This file was deleted.
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
Oops, something went wrong.