adminforth 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/modules/codeInjector.js +2 -1
- package/package.json +1 -1
package/modules/codeInjector.js
CHANGED
|
@@ -285,7 +285,8 @@ class CodeInjector {
|
|
|
285
285
|
const cwd = SPA_TMP_PATH;
|
|
286
286
|
|
|
287
287
|
if (!hotReload) {
|
|
288
|
-
|
|
288
|
+
// probably add option to build with tsh check (plain 'build')
|
|
289
|
+
await this.runNpmShell({command: 'run build-only', verbose, cwd});
|
|
289
290
|
} else {
|
|
290
291
|
const command = 'run dev';
|
|
291
292
|
console.time(`Running npm ${command}...`);
|