Skip to content

Commit 97ff2e6

Browse files
chore(yarn): Upgrade to Yarn 2
1 parent d44b124 commit 97ff2e6

File tree

587 files changed

+22534
-3741
lines changed

Some content is hidden

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

587 files changed

+22534
-3741
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# mirror to .npmignore
22
/coverage/
33
/node_modules/
4+
.yarn/*
45
# .gitignore-only
5-
/build/
6+
/build/
7+
!.yarn/cache
8+
!.yarn/releases
9+
!.yarn/plugins
10+
!.yarn/sdks
11+
!.yarn/versions

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# mirror to .gitignore
22
/coverage/
33
/node_modules/
4+
.yarn/*
45
# .npmignore-only
56
.codeclimate.yml
67
.travis.yml
78
.gitignore
89
tsconfig.json
9-
yarn.lock
10+
yarn.lock

.pnp.js

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

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
sudo: false
22
language: node_js
33
node_js:
4-
- '8'
5-
- '10'
6-
- 'node'
4+
- "12"
5+
- "14"
6+
- "node"
77
before_script:
88
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
99
- chmod +x ./cc-test-reporter

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["arcanis.vscode-zipfs"]
3+
}

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"search.exclude": {
3+
"**/.pnp.*": true,
4+
"**/.yarn": true
5+
},
6+
"typescript.enablePromptUseWorkspaceTsdk": true,
7+
"typescript.tsdk": ".yarn/sdks/typescript/lib"
8+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)