File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 36
36
"build:bundle" : " if [ -d 'dist' ]; then npx esbuild ./dist/cli.js --outdir=./bundle --bundle --platform=node --target=node16 --packages=external --format=esm --minify; fi" ,
37
37
"bundle:run" : " node bundle/cli.js test/test-dummies/_unfold.js --save-to ~/Desktop --save-as from-bundle" ,
38
38
"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" ,
41
40
"prettier" : " npx prettier ./**/* --check" ,
42
41
"test:unit" : " npx vitest run ./test/**/* --exclude ./test/e2e/** --coverage" ,
43
42
"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" ,
45
44
"prepare" : " husky install" ,
46
45
"postinstall" : " npx playwright install --with-deps"
47
46
},
Original file line number Diff line number Diff line change 1
1
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' } ;
3
3
4
4
describe ( 'promptConfig' , ( ) => {
5
5
it ( 'should have the same `name` values as a preset has setting keys' , async ( ) => {
You can’t perform that action at this time.
0 commit comments