Skip to content

Commit fe89490

Browse files
author
Angular Builds
committed
33ed6e8 refactor: move builtin module imports to use node: prefix imports
1 parent 5ad0b86 commit fe89490

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

node/testing/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.dev/license
77
*/
8-
import * as fs from 'fs';
8+
import * as fs from 'node:fs';
99
import { Path, virtualFs } from '../../src';
1010
/**
1111
* A Sync Scoped Host that creates a temporary directory and scope to it.

node/testing/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ var __importStar = (this && this.__importStar) || (function () {
4141
})();
4242
Object.defineProperty(exports, "__esModule", { value: true });
4343
exports.TempScopedNodeJsSyncHost = void 0;
44-
const fs = __importStar(require("fs"));
45-
const os = __importStar(require("os"));
46-
const path = __importStar(require("path"));
44+
const fs = __importStar(require("node:fs"));
45+
const os = __importStar(require("node:os"));
46+
const path = __importStar(require("node:path"));
4747
const src_1 = require("../../src");
4848
const host_1 = require("../host");
4949
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular-devkit/core",
3-
"version": "19.2.0-next.2+sha-c0c1670",
3+
"version": "19.2.0-next.2+sha-33ed6e8",
44
"description": "Angular DevKit - Core Utility Library",
55
"main": "src/index.js",
66
"typings": "src/index.d.ts",

src/json/schema/registry.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
4646
exports.CoreSchemaRegistry = exports.SchemaValidationException = void 0;
4747
const ajv_1 = __importDefault(require("ajv"));
4848
const ajv_formats_1 = __importDefault(require("ajv-formats"));
49-
const http = __importStar(require("http"));
50-
const https = __importStar(require("https"));
49+
const http = __importStar(require("node:http"));
50+
const https = __importStar(require("node:https"));
51+
const Url = __importStar(require("node:url"));
5152
const rxjs_1 = require("rxjs");
52-
const Url = __importStar(require("url"));
5353
const exception_1 = require("../../exception");
5454
const utils_1 = require("../../utils");
5555
const utils_2 = require("../utils");

uniqueId

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

0 commit comments

Comments
 (0)