chore: fix build process in dev mode (#835)
This commit is contained in:
parent
93c2358a71
commit
943a1ed5e6
|
@ -94,9 +94,10 @@ async function buildAll () {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function main () {
|
async function main () {
|
||||||
await buildAll()
|
|
||||||
if (process.argv.includes('--watch')) {
|
if (process.argv.includes('--watch')) {
|
||||||
doWatch()
|
doWatch()
|
||||||
|
} else {
|
||||||
|
await buildAll()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "standard && standard --plugin html 'src/routes/**/*.html'",
|
"lint": "standard && standard --plugin html 'src/routes/**/*.html'",
|
||||||
"lint-fix": "standard --fix && standard --fix --plugin html 'src/routes/**/*.html'",
|
"lint-fix": "standard --fix && standard --fix --plugin html 'src/routes/**/*.html'",
|
||||||
"dev": "run-p --race build-template-html-watch sapper-dev",
|
"dev": "run-s build-template-html serve-dev",
|
||||||
|
"serve-dev": "run-p --race build-template-html-watch sapper-dev",
|
||||||
"sapper-dev": "cross-env NODE_ENV=development PORT=4002 sapper dev",
|
"sapper-dev": "cross-env NODE_ENV=development PORT=4002 sapper dev",
|
||||||
"sapper-prod": "cross-env PORT=4002 node __sapper__/build",
|
"sapper-prod": "cross-env PORT=4002 node __sapper__/build",
|
||||||
"build": "cross-env NODE_ENV=production npm run build-steps",
|
"build": "cross-env NODE_ENV=production npm run build-steps",
|
||||||
|
|
Loading…
Reference in New Issue