Skip to content

Commit 1648ce8

Browse files
gottfiredmrmckeb
authored andcommitted
Fix order of args in tasks/cra test (#6342)
1 parent bacb440 commit 1648ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tasks/cra.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const args = process.argv.slice(2);
113113
// Now run the CRA command
114114
const craScriptPath = path.join(packagesDir, 'create-react-app', 'index.js');
115115
cp.execSync(
116-
`node ${craScriptPath} --scripts-version="${scriptsPath}" ${args.join(' ')}`,
116+
`node ${craScriptPath} ${args.join(' ')} --scripts-version="${scriptsPath}"`,
117117
{
118118
cwd: rootDir,
119119
stdio: 'inherit',

0 commit comments

Comments
 (0)