Skip to content

Commit e6252ad

Browse files
authored
build: Upgrade to Yarn 3. (#22)
* Enable. * Update lock. * Get build running. * Remove pr check.
1 parent 5f7c279 commit e6252ad

File tree

8 files changed

+10567
-6487
lines changed

8 files changed

+10567
-6487
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/setup-node@v2
1818
with:
1919
node-version: ${{ matrix.node-version }}
20-
- run: yarn install --ignore-engines --frozen-lockfile
20+
- run: yarn install --immutable
2121
- run: yarn run type
2222
# Our fake git commit system doesnt work in GH jobs
2323
# - run: yarn run jest

.github/workflows/pr.yml

-15
This file was deleted.

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,12 @@ jest.config.js
3131
prettier.config.js
3232
tsconfig.json
3333
webpack.config.js
34+
35+
# Yarn
36+
.yarn/*
37+
!.yarn/patches
38+
!.yarn/releases
39+
!.yarn/plugins
40+
!.yarn/sdks
41+
!.yarn/versions
42+
.pnp.*

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

+546
Large diffs are not rendered by default.

.yarn/releases/yarn-3.2.0.cjs

+785
Large diffs are not rendered by default.

.yarnrc.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
enableGlobalCache: true
2+
3+
enableTelemetry: false
4+
5+
nodeLinker: node-modules
6+
7+
plugins:
8+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
9+
spec: '@yarnpkg/plugin-interactive-tools'
10+
11+
yarnPath: .yarn/releases/yarn-3.2.0.cjs

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
"prerelease": "yarn run build && yarn run check"
2929
},
3030
"devDependencies": {
31+
"@beemo/cli": "^2.0.6",
32+
"@beemo/core": "^2.1.4",
3133
"@beemo/dev": "^1.7.8",
3234
"@types/node": "^14.14.25",
3335
"@types/shelljs": "^0.8.8",
@@ -38,5 +40,6 @@
3840
"funding": {
3941
"type": "ko-fi",
4042
"url": "https://ko-fi.com/milesjohnson"
41-
}
43+
},
44+
"packageManager": "[email protected]"
4245
}

yarn.lock

+9,211-6,470
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)