@angular-devkit/architect-cli 0.1300.0-next.3 → 0.1300.0-next.7
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 +4 -4
- package/package.json +3 -3
package/bin/architect.js
CHANGED
|
@@ -49,7 +49,7 @@ function findUp(names, from) {
|
|
|
49
49
|
while (currentDir && currentDir !== root) {
|
|
50
50
|
for (const name of names) {
|
|
51
51
|
const p = path.join(currentDir, name);
|
|
52
|
-
if (fs_1.existsSync(p)) {
|
|
52
|
+
if ((0, fs_1.existsSync)(p)) {
|
|
53
53
|
return p;
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -130,7 +130,7 @@ async function _executeTarget(parentLogger, workspace, root, argv, registry) {
|
|
|
130
130
|
// Wait for full completion of the builder.
|
|
131
131
|
try {
|
|
132
132
|
const { success } = await run.output
|
|
133
|
-
.pipe(operators_1.tap((result) => {
|
|
133
|
+
.pipe((0, operators_1.tap)((result) => {
|
|
134
134
|
if (result.success) {
|
|
135
135
|
parentLogger.info(colors.green('SUCCESS'));
|
|
136
136
|
}
|
|
@@ -158,9 +158,9 @@ async function _executeTarget(parentLogger, workspace, root, argv, registry) {
|
|
|
158
158
|
}
|
|
159
159
|
async function main(args) {
|
|
160
160
|
/** Parse the command line. */
|
|
161
|
-
const argv = minimist_1.default(args, { boolean: ['help'] });
|
|
161
|
+
const argv = (0, minimist_1.default)(args, { boolean: ['help'] });
|
|
162
162
|
/** Create the DevKit Logger used through the CLI. */
|
|
163
|
-
const logger = node_2.createConsoleLogger(argv['verbose'], process.stdout, process.stderr, {
|
|
163
|
+
const logger = (0, node_2.createConsoleLogger)(argv['verbose'], process.stdout, process.stderr, {
|
|
164
164
|
info: (s) => s,
|
|
165
165
|
debug: (s) => s,
|
|
166
166
|
warn: (s) => colors.bold.yellow(s),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular-devkit/architect-cli",
|
|
3
|
-
"version": "0.1300.0-next.
|
|
3
|
+
"version": "0.1300.0-next.7",
|
|
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.1300.0-next.
|
|
23
|
-
"@angular-devkit/core": "13.0.0-next.
|
|
22
|
+
"@angular-devkit/architect": "0.1300.0-next.7",
|
|
23
|
+
"@angular-devkit/core": "13.0.0-next.7",
|
|
24
24
|
"ansi-colors": "4.1.1",
|
|
25
25
|
"minimist": "1.2.5",
|
|
26
26
|
"progress": "2.0.3",
|