@angular-devkit/core 19.1.7 → 19.1.9

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.
@@ -5,7 +5,7 @@
5
5
  * Use of this source code is governed by an MIT-style license that can be
6
6
  * found in the LICENSE file at https://angular.dev/license
7
7
  */
8
- import * as fs from 'fs';
8
+ import * as fs from 'node:fs';
9
9
  import { Path, virtualFs } from '../../src';
10
10
  /**
11
11
  * A Sync Scoped Host that creates a temporary directory and scope to it.
@@ -41,9 +41,9 @@ var __importStar = (this && this.__importStar) || (function () {
41
41
  })();
42
42
  Object.defineProperty(exports, "__esModule", { value: true });
43
43
  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"));
47
47
  const src_1 = require("../../src");
48
48
  const host_1 = require("../host");
49
49
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/core",
3
- "version": "19.1.7",
3
+ "version": "19.1.9",
4
4
  "description": "Angular DevKit - Core Utility Library",
5
5
  "main": "src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -46,10 +46,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
46
46
  exports.CoreSchemaRegistry = exports.SchemaValidationException = void 0;
47
47
  const ajv_1 = __importDefault(require("ajv"));
48
48
  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"));
51
52
  const rxjs_1 = require("rxjs");
52
- const Url = __importStar(require("url"));
53
53
  const exception_1 = require("../../exception");
54
54
  const utils_1 = require("../../utils");
55
55
  const utils_2 = require("../utils");