Adding a change to nodemon configuration, this stops the services restarting twice when a build is triggered.

This commit is contained in:
mike12345567 2024-10-30 14:23:58 +00:00
parent d20146ecaf
commit c7646afde0
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,6 @@
"../string-templates"
],
"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"
}