Skip to content

Commit 575e54c

Browse files
committed
Change start command from dev to start.
1 parent 50ca096 commit 575e54c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/create-react-storefront-internal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const createReactStorefrontInternal = async (options, userConfig) => {
8989
console.log('To run your app:')
9090
console.log('')
9191
console.log(chalk.green(` cd ${path.relative(process.cwd(), targetPath)}`))
92-
console.log(chalk.green(` npm run dev`))
92+
console.log(chalk.green(` npm start`))
9393
console.log('')
9494
console.log('To deploy your app for free on the Moovweb XDN, go to:')
9595
console.log('')

lib/create-react-storefront.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { promptForConfig } = require('./prompt-for-config')
55
const configDefaults = require('./config-defaults')
66

77
const _calculateStartCommand = () => {
8-
return 'npm run dev'
8+
return 'npm start'
99
}
1010

1111
/**

0 commit comments

Comments
 (0)