Skip to content

Commit 46e02e8

Browse files
committed
fix
1 parent fdca95a commit 46e02e8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/cd-scripts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- run: yarn install --immutable
4040

41-
- run: node --no-warnings --experimental-strip-types tools/build.ts
41+
- run: node --no-warnings --experimental-strip-types --experimental-transform-types tools/build.ts
4242

4343
- run: yarn test --run --coverage
4444

@@ -66,7 +66,7 @@ jobs:
6666

6767
- run: yarn install --immutable
6868

69-
- run: node --no-warnings --experimental-strip-types tools/build.ts
69+
- run: node --no-warnings --experimental-strip-types --experimental-transform-types tools/build.ts
7070

7171
- run: yarn tsc
7272

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
afterInstall: node --no-warnings --experimental-strip-types tools/patches.ts
1+
afterInstall: node --no-warnings --experimental-strip-types --experimental-transform-types tools/patches.ts
22

33
nodeLinker: node-modules
44

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"test": "./node_modules/vitest/vitest.mjs",
99
"coverage": "./node_modules/vitest/vitest.mjs --coverage",
1010
"cov": "./node_modules/vitest/vitest.mjs --coverage --ui",
11-
"patches": "node --no-warnings --experimental-strip-types tools/patches.ts",
11+
"patches": "node --no-warnings --experimental-strip-types --experimental-transform-types tools/patches.ts",
1212
"prepare": "git config core.ignorecase false"
1313
},
1414
"dependencies": {

0 commit comments

Comments
 (0)