@nu-art/build-and-install 0.204.11 → 0.204.12
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/logic/ProjectManager.js +0 -1
- package/package.json +1 -1
- package/phases/phases.js +2 -1
package/logic/ProjectManager.js
CHANGED
package/package.json
CHANGED
package/phases/phases.js
CHANGED
|
@@ -427,6 +427,7 @@ exports.Phase_Compile = {
|
|
|
427
427
|
return;
|
|
428
428
|
try {
|
|
429
429
|
const otherFiles = [
|
|
430
|
+
'json',
|
|
430
431
|
'scss',
|
|
431
432
|
'svg',
|
|
432
433
|
'png',
|
|
@@ -591,7 +592,7 @@ exports.Phase_Launch = {
|
|
|
591
592
|
await (0, ts_common_1.sleep)(1000 * counter++);
|
|
592
593
|
const allPorts = Array.from({ length: 10 }, (_, i) => `${pkg.envConfig.basePort + i}`);
|
|
593
594
|
const command = nvm_1.NVM.createInteractiveCommando(basic_1.Cli_Basic)
|
|
594
|
-
.cd(pkg.path)
|
|
595
|
+
.cd(pkg.path)
|
|
595
596
|
.append(`nvm use`)
|
|
596
597
|
.append(`array=($(lsof -ti:${allPorts.join(',')}))`)
|
|
597
598
|
.append(`((\${#array[@]} > 0)) && kill -9 "\${array[@]}"`);
|