@nu-art/build-and-install 0.401.3 → 0.401.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nu-art/build-and-install",
|
|
3
|
-
"version": "0.401.
|
|
3
|
+
"version": "0.401.4",
|
|
4
4
|
"description": "A build system for monorepos that orchestrates building, testing, and deploying units with dependency-aware phase execution",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"chokidar": "^3.6.0",
|
|
42
|
-
"@nu-art/cli-params": "0.401.
|
|
43
|
-
"@nu-art/ts-common": "0.401.
|
|
44
|
-
"@nu-art/commando": "0.401.
|
|
42
|
+
"@nu-art/cli-params": "0.401.4",
|
|
43
|
+
"@nu-art/ts-common": "0.401.4",
|
|
44
|
+
"@nu-art/commando": "0.401.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@nu-art/testalot": "0.401.
|
|
47
|
+
"@nu-art/testalot": "0.401.4"
|
|
48
48
|
},
|
|
49
49
|
"unitConfig": {
|
|
50
50
|
"type": "typescript-lib"
|
|
@@ -7,7 +7,7 @@ import { PNPM } from '@nu-art/commando';
|
|
|
7
7
|
import { Unit_PackageJson } from './Unit_PackageJson.js';
|
|
8
8
|
import { resolve } from 'path';
|
|
9
9
|
import { PhaseManager } from '../../phases/PhaseManager.js';
|
|
10
|
-
import { phase_CompileWatch } from '../../phases/definitions/index.js';
|
|
10
|
+
import { phase_CompileWatch, phase_Prepare } from '../../phases/definitions/index.js';
|
|
11
11
|
import { UnitsDependencyMapper } from '../../dependencies/UnitsDependencyMapper.js';
|
|
12
12
|
import { CommandoException } from '@nu-art/commando';
|
|
13
13
|
import { CONST_PNPM_LOCK, CONST_PNPM_WORKSPACE } from '../../config/consts.js';
|
|
@@ -189,7 +189,7 @@ export class Unit_NodeProject extends Unit_PackageJson {
|
|
|
189
189
|
continue: false
|
|
190
190
|
};
|
|
191
191
|
const activeUnitKeys = this.runtimeContext.childUnits.map(unit => unit.config.key);
|
|
192
|
-
const phaseManager = new PhaseManager(new RunningStatusHandler(this.config.fullPath, watchRuntimeParams).isolate(), [[phase_CompileWatch]], unitDependencyTree, activeUnitKeys, activeUnitKeys);
|
|
192
|
+
const phaseManager = new PhaseManager(new RunningStatusHandler(this.config.fullPath, watchRuntimeParams).isolate(), [[phase_Prepare], [phase_CompileWatch]], unitDependencyTree, activeUnitKeys, activeUnitKeys);
|
|
193
193
|
// @ts-ignore
|
|
194
194
|
phaseManager.setTag('PhaseManager-Watcher');
|
|
195
195
|
const executionPlan = await phaseManager.calculateExecutionSteps();
|