Vendor yarn executable (#132)

* chore: vendor yarn version

* chore: change git ignore for yarn files

* chore: "add-target" make target

Non-rustup users have to run this.

* ci: prettier should ignore .yarn
This commit is contained in:
Dylan C. Kendal
2022-01-12 17:18:51 -05:00
committed by GitHub
parent ff632b1cc2
commit 7c75200e86
6 changed files with 147406 additions and 3 deletions

4
.gitattributes vendored
View File

@@ -1 +1,3 @@
*.json linguist-language=JSON-with-Comments
*.json linguist-language=JSON-with-Comments
.yarn/releases/** binary
.yarn/plugins/** binary

6
.gitignore vendored
View File

@@ -24,4 +24,8 @@ src/napi/package-*
target
*.node
todo-express/
qwik-app/
qwik-app/
# Yarn
.yarn/*
!.yarn/releases

View File

@@ -4,6 +4,7 @@
*.
.vscode/settings.json
.history
.yarn
bazel-*
bazel-bin
bazel-out
@@ -27,4 +28,4 @@ build
.rollup.cache
build
node_modules
tsconfig.tsbuildinfo
tsconfig.tsbuildinfo

147392
.yarn/releases/yarn-1.23.0-20211220.1904.cjs vendored Executable file

File diff suppressed because one or more lines are too long

1
.yarnrc.yml Normal file
View File

@@ -0,0 +1 @@
yarnPath: .yarn/releases/yarn-1.23.0-20211220.1904.cjs

View File

@@ -7,6 +7,9 @@ install-rust-deps:
cargo install wasm-pack
rustup component add clippy
add-target:
rustup target add wasm32-unknown-unknown
install-all: install-rust install-rust-deps
install-cli: