Adding a change to nodemon configuration, this stops the services restarting twice when a build is triggered.
This commit is contained in:
parent
d20146ecaf
commit
c7646afde0
|
@ -8,6 +8,6 @@
|
||||||
"../string-templates"
|
"../string-templates"
|
||||||
],
|
],
|
||||||
"ext": "js,ts,json,svelte",
|
"ext": "js,ts,json,svelte",
|
||||||
"ignore": ["**/*.spec.ts", "**/*.spec.js", "../*/dist/**/*"],
|
"ignore": ["**/*.spec.ts", "**/*.spec.js", "../*/dist/**/*", "client/**/*", "builder/**/*"],
|
||||||
"exec": "yarn build && node --no-node-snapshot ./dist/index.js"
|
"exec": "yarn build && node --no-node-snapshot ./dist/index.js"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue