build: switch to berry (#162)
* build: switch to berry * ci: deprecated opt
This commit is contained in:
parent
401196d62a
commit
ac1adaa22f
6 changed files with 36455 additions and 8702 deletions
2
.github/workflows/nodejs.yml
vendored
2
.github/workflows/nodejs.yml
vendored
|
@ -47,7 +47,7 @@ jobs:
|
|||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: yarn --frozen-lockfile
|
||||
- run: yarn --immutable
|
||||
- run: yarn build
|
||||
release:
|
||||
name: Release
|
||||
|
|
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -6,6 +6,14 @@ yarn-debug.log*
|
|||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
|
||||
# Yarntifacts
|
||||
.yarn/*
|
||||
!.yarn/releases
|
||||
!.yarn/plugins
|
||||
!.yarn/versions
|
||||
!.yarn/sdks
|
||||
.pnp.*i
|
||||
|
||||
# Diagnostic reports (https://nodejs.org/api/report.html)
|
||||
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
||||
|
||||
|
|
24723
.pnp.js
generated
Executable file
24723
.pnp.js
generated
Executable file
File diff suppressed because one or more lines are too long
55
.yarn/releases/yarn-2.4.0.cjs
vendored
Executable file
55
.yarn/releases/yarn-2.4.0.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
|
@ -26,10 +26,6 @@
|
|||
"type": "git",
|
||||
"url": "https://github.com/mcataford/packwatch.git"
|
||||
},
|
||||
"pre-commit": [
|
||||
"lint",
|
||||
"test"
|
||||
],
|
||||
"scripts": {
|
||||
"prebuild": "rimraf dist",
|
||||
"build": "babel src/index.ts src/cli.ts -d dist --extensions .ts",
|
||||
|
@ -51,12 +47,12 @@
|
|||
"@typescript-eslint/parser": "^4.9.1",
|
||||
"eslint": "^7.0.0",
|
||||
"eslint-config-prettier": "^6.10.0",
|
||||
"eslint-plugin-import": "^2.20.1",
|
||||
"eslint-import-resolver-node": "^0.3.4",
|
||||
"eslint-plugin-import": "^2.22.1",
|
||||
"eslint-plugin-jest": "^23.8.0",
|
||||
"eslint-plugin-prettier": "^3.1.2",
|
||||
"jest": "^26.0.1",
|
||||
"mock-fs": "^4.11.0",
|
||||
"pre-commit": "^1.2.2",
|
||||
"prettier": "^2.0.5",
|
||||
"rimraf": "^3.0.2",
|
||||
"semantic-release": "^17.0.4",
|
||||
|
|
Reference in a new issue