Skip to content

Commit 7d323ed

Browse files
author
Angular Builds
committed
33ed6e8 refactor: move builtin module imports to use node: prefix imports
1 parent 7b32cf7 commit 7d323ed

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

bin/architect.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ const node_1 = require("@angular-devkit/architect/node");
4646
const core_1 = require("@angular-devkit/core");
4747
const node_2 = require("@angular-devkit/core/node");
4848
const ansiColors = __importStar(require("ansi-colors"));
49-
const fs_1 = require("fs");
50-
const path = __importStar(require("path"));
49+
const node_fs_1 = require("node:fs");
50+
const path = __importStar(require("node:path"));
5151
const yargs_parser_1 = __importStar(require("yargs-parser"));
5252
const progress_1 = require("../src/progress");
5353
function findUp(names, from) {
@@ -59,7 +59,7 @@ function findUp(names, from) {
5959
while (currentDir && currentDir !== root) {
6060
for (const name of names) {
6161
const p = path.join(currentDir, name);
62-
if ((0, fs_1.existsSync)(p)) {
62+
if ((0, node_fs_1.existsSync)(p)) {
6363
return p;
6464
}
6565
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-devkit/architect-cli",
3-
"version": "0.1902.0-next.2+sha-c0c1670",
3+
"version": "0.1902.0-next.2+sha-33ed6e8",
44
"description": "Angular Architect CLI",
55
"homepage": "https://github.com/angular/angular-cli",
66
"experimental": true,
@@ -19,8 +19,8 @@
1919
"tooling"
2020
],
2121
"dependencies": {
22-
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#c0c1670",
23-
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#c0c1670",
22+
"@angular-devkit/architect": "github:angular/angular-devkit-architect-builds#33ed6e8",
23+
"@angular-devkit/core": "github:angular/angular-devkit-core-builds#33ed6e8",
2424
"ansi-colors": "4.1.3",
2525
"progress": "2.0.3",
2626
"symbol-observable": "4.0.0",

src/progress.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4444
};
4545
Object.defineProperty(exports, "__esModule", { value: true });
4646
exports.MultiProgressBar = void 0;
47+
const readline = __importStar(require("node:readline"));
4748
const progress_1 = __importDefault(require("progress"));
48-
const readline = __importStar(require("readline"));
4949
class MultiProgressBar {
5050
_status;
5151
_stream;

uniqueId

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fri Feb 14 2025 15:42:20 GMT+0000 (Coordinated Universal Time)
1+
Fri Feb 14 2025 19:17:54 GMT+0000 (Coordinated Universal Time)

0 commit comments

Comments
 (0)