Skip to content

Commit

Permalink
Fix order of args in tasks/cra test (#6342)
Browse files Browse the repository at this point in the history
  • Loading branch information
gottfired authored and mrmckeb committed Feb 5, 2019
1 parent bacb440 commit 1648ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/cra.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ const args = process.argv.slice(2);
// Now run the CRA command
const craScriptPath = path.join(packagesDir, 'create-react-app', 'index.js');
cp.execSync(
`node ${craScriptPath} --scripts-version="${scriptsPath}" ${args.join(' ')}`,
`node ${craScriptPath} ${args.join(' ')} --scripts-version="${scriptsPath}"`,
{
cwd: rootDir,
stdio: 'inherit',
Expand Down

0 comments on commit 1648ce8

Please sign in to comment.