@angular-devkit/architect-cli 0.1902.0-next.2 → 0.1902.0-rc.0
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/bin/architect.js +3 -3
- package/package.json +3 -3
- package/src/progress.js +1 -1
package/bin/architect.js
CHANGED
|
@@ -46,8 +46,8 @@ const node_1 = require("@angular-devkit/architect/node");
|
|
|
46
46
|
const core_1 = require("@angular-devkit/core");
|
|
47
47
|
const node_2 = require("@angular-devkit/core/node");
|
|
48
48
|
const ansiColors = __importStar(require("ansi-colors"));
|
|
49
|
-
const
|
|
50
|
-
const path = __importStar(require("path"));
|
|
49
|
+
const node_fs_1 = require("node:fs");
|
|
50
|
+
const path = __importStar(require("node:path"));
|
|
51
51
|
const yargs_parser_1 = __importStar(require("yargs-parser"));
|
|
52
52
|
const progress_1 = require("../src/progress");
|
|
53
53
|
function findUp(names, from) {
|
|
@@ -59,7 +59,7 @@ function findUp(names, from) {
|
|
|
59
59
|
while (currentDir && currentDir !== root) {
|
|
60
60
|
for (const name of names) {
|
|
61
61
|
const p = path.join(currentDir, name);
|
|
62
|
-
if ((0,
|
|
62
|
+
if ((0, node_fs_1.existsSync)(p)) {
|
|
63
63
|
return p;
|
|
64
64
|
}
|
|
65
65
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/architect-cli",
|
|
3
|
-
"version": "0.1902.0-
|
|
3
|
+
"version": "0.1902.0-rc.0",
|
|
4
4
|
"description": "Angular Architect CLI",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"experimental": true,
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"tooling"
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@angular-devkit/architect": "0.1902.0-
|
|
23
|
-
"@angular-devkit/core": "19.2.0-
|
|
22
|
+
"@angular-devkit/architect": "0.1902.0-rc.0",
|
|
23
|
+
"@angular-devkit/core": "19.2.0-rc.0",
|
|
24
24
|
"ansi-colors": "4.1.3",
|
|
25
25
|
"progress": "2.0.3",
|
|
26
26
|
"symbol-observable": "4.0.0",
|
package/src/progress.js
CHANGED
|
@@ -44,8 +44,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
44
44
|
};
|
|
45
45
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
46
46
|
exports.MultiProgressBar = void 0;
|
|
47
|
+
const readline = __importStar(require("node:readline"));
|
|
47
48
|
const progress_1 = __importDefault(require("progress"));
|
|
48
|
-
const readline = __importStar(require("readline"));
|
|
49
49
|
class MultiProgressBar {
|
|
50
50
|
_status;
|
|
51
51
|
_stream;
|