@@ -18,7 +18,6 @@ import getCommand from './utils/getCommand'
18
18
import getLanguage from './utils/getLanguage'
19
19
import renderEslint from './utils/renderEslint'
20
20
import { FILES_TO_FILTER } from './utils/filterList'
21
- import addNpmScript from './utils/addNpmScript'
22
21
23
22
function isValidPackageName ( projectName ) {
24
23
return / ^ (?: @ [ a - z 0 - 9 - * ~ ] [ a -z 0 -9 -* ._ ~ ] * \/ ) ? [ a - z 0 - 9 - ~ ] [ a - z 0 - 9 - ._ ~ ] * $ / . test ( projectName )
@@ -349,24 +348,24 @@ async function init() {
349
348
if ( needsPinia ) {
350
349
render ( 'config/pinia' )
351
350
}
352
- if ( needsVitest ) {
353
- render ( 'config/vitest' )
354
- }
355
351
if ( needsCypress ) {
356
352
render ( 'config/cypress' )
357
353
}
358
- if ( needsCypressCT ) {
359
- render ( 'config/cypress-ct' )
360
- }
361
354
if ( needsNightwatch ) {
362
355
render ( 'config/nightwatch' )
363
356
}
364
- if ( needsNightwatchCT ) {
365
- render ( 'config/nightwatch-ct' )
366
- }
367
357
if ( needsPlaywright ) {
368
358
render ( 'config/playwright' )
369
359
}
360
+ if ( needsVitest ) {
361
+ render ( 'config/vitest' )
362
+ }
363
+ if ( needsCypressCT ) {
364
+ render ( 'config/cypress-ct' )
365
+ }
366
+ if ( needsNightwatchCT ) {
367
+ render ( 'config/nightwatch-ct' )
368
+ }
370
369
if ( needsTypeScript ) {
371
370
render ( 'config/typescript' )
372
371
@@ -492,20 +491,6 @@ async function init() {
492
491
const userAgent = process . env . npm_config_user_agent ?? ''
493
492
const packageManager = / p n p m / . test ( userAgent ) ? 'pnpm' : / y a r n / . test ( userAgent ) ? 'yarn' : 'npm'
494
493
495
- // Extend the package.json with the test script
496
- const packageJsonPath = path . resolve ( root , 'package.json' )
497
- addNpmScript ( 'start' , packageManager , 'dev' , packageJsonPath )
498
- if (
499
- ( needsCypress || needsNightwatch || needsPlaywright ) &&
500
- ! needsVitest &&
501
- ! needsCypressCT &&
502
- ! needsNightwatchCT
503
- ) {
504
- addNpmScript ( 'test' , packageManager , 'test:e2e' , packageJsonPath )
505
- } else if ( needsVitest || needsCypressCT || needsNightwatchCT ) {
506
- addNpmScript ( 'test' , packageManager , 'test:unit' , packageJsonPath )
507
- }
508
-
509
494
// README generation
510
495
fs . writeFileSync (
511
496
path . resolve ( root , 'README.md' ) ,
0 commit comments