Skip to content

Commit 22c560c

Browse files
committed
💚 Fixes pipeline
1 parent c50cf2d commit 22c560c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,11 @@
3636
"build:bundle": "if [ -d 'dist' ]; then npx esbuild ./dist/cli.js --outdir=./bundle --bundle --platform=node --target=node16 --packages=external --format=esm --minify; fi",
3737
"bundle:run": "node bundle/cli.js test/test-dummies/_unfold.js --save-to ~/Desktop --save-as from-bundle",
3838
"build-and-bundle": "npm run build && npm run bundle:build",
39-
"tscversion": "tsc --version",
40-
"typecheck": "tsc --noEmit --project tsconfig.json",
39+
"typecheck": "tsc --noEmit",
4140
"prettier": "npx prettier ./**/* --check",
4241
"test:unit": "npx vitest run ./test/**/* --exclude ./test/e2e/** --coverage",
4342
"test:e2e": "npx vitest run ./test/e2e/index.test.ts --coverage --testTimeout 180000",
44-
"test": "npm run tscversion && npm run typecheck && npm run prettier && npm run test:unit && npm run test:e2e",
43+
"test": "npm run typecheck && npm run prettier && npm run test:unit && npm run test:e2e",
4544
"prepare": "husky install",
4645
"postinstall": "npx playwright install --with-deps"
4746
},

test/config/prompt.config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import promptConfig from '../../src/config/cli/prompt.config.js';
2-
import dummyConfig from './../test-dummies/_config.json';
2+
import dummyConfig from './../test-dummies/_config.json' assert { type: 'json' };
33

44
describe('promptConfig', () => {
55
it('should have the same `name` values as a preset has setting keys', async () => {

0 commit comments

Comments
 (0)