Skip to content

Commit 52ad1b4

Browse files
committed
chore: downgrade to yarn 1 to fix CI production install check
1 parent 0372d8d commit 52ad1b4

8 files changed

Lines changed: 188303 additions & 11323 deletions

File tree

.yarn/install-state.gz

-915 KB
Binary file not shown.

.yarn/releases/yarn-1.22.22.cjs

Lines changed: 179934 additions & 0 deletions
Large diffs are not rendered by default.

.yarn/releases/yarn-4.13.0.cjs

Lines changed: 0 additions & 940 deletions
This file was deleted.

.yarnrc.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
nodeLinker: node-modules
2-
3-
yarnPath: .yarn/releases/yarn-4.13.0.cjs
4-
5-
logFilters:
6-
- code: YN0050
7-
level: discard
1+
yarnPath: .yarn/releases/yarn-1.22.22.cjs

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ help:
1919
all: install unit nuts
2020

2121
install:
22-
yarn install --mode=skip-build
22+
yarn install
2323

2424
compile: install
2525
$(BIN)/tsc -p . --pretty --incremental

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"format": "wireit",
6868
"link-check": "wireit",
6969
"lint": "wireit",
70-
"postinstall": "node -e \"const r=require('child_process').spawnSync('./node_modules/.bin/husky',['install'],{stdio:'inherit'});if(r.error&&r.error.code!=='ENOENT')process.exit(1)\"",
70+
"postinstall": "node -e \"const r=require('child_process').spawnSync('./node_modules/.bin/husky',['install'],{stdio:'inherit'});if(r.error&&r.error.code!=='ENOENT')process.exit(1);\"",
7171
"postpack": "sf-clean --ignore-signing-artifacts",
7272
"prepack": "sf-prepack",
7373
"test": "wireit",
@@ -192,5 +192,5 @@
192192
"exports": "./lib/index.js",
193193
"type": "module",
194194
"author": "cdp-byoc@salesforce.com",
195-
"packageManager": "yarn@4.13.0"
195+
"packageManager": "yarn@1.22.22"
196196
}

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"extends": "@salesforce/dev-config/tsconfig-strict-esm",
33
"compilerOptions": {
44
"outDir": "lib",
5-
"rootDir": "src"
5+
"rootDir": "src",
6+
"skipLibCheck": true
67
},
78
"include": ["./src/**/*.ts"]
89
}

0 commit comments

Comments
 (0)