@schematics/angular 19.0.0-next.3 → 19.0.0-next.4
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schematics/angular",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.4",
|
|
4
4
|
"description": "Schematics specific to Angular",
|
|
5
5
|
"homepage": "https://github.com/angular/angular-cli",
|
|
6
6
|
"keywords": [
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
},
|
|
23
23
|
"schematics": "./collection.json",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@angular-devkit/core": "19.0.0-next.
|
|
26
|
-
"@angular-devkit/schematics": "19.0.0-next.
|
|
25
|
+
"@angular-devkit/core": "19.0.0-next.4",
|
|
26
|
+
"@angular-devkit/schematics": "19.0.0-next.4",
|
|
27
27
|
"jsonc-parser": "3.3.1"
|
|
28
28
|
},
|
|
29
29
|
"packageManager": "yarn@4.4.0",
|
|
@@ -2263,7 +2263,7 @@ module.exports = __toCommonJS(typescript_exports);
|
|
|
2263
2263
|
|
|
2264
2264
|
// src/compiler/corePublic.ts
|
|
2265
2265
|
var versionMajorMinor = "5.6";
|
|
2266
|
-
var version = "5.6.
|
|
2266
|
+
var version = "5.6.2";
|
|
2267
2267
|
var Comparison = /* @__PURE__ */ ((Comparison3) => {
|
|
2268
2268
|
Comparison3[Comparison3["LessThan"] = -1] = "LessThan";
|
|
2269
2269
|
Comparison3[Comparison3["EqualTo"] = 0] = "EqualTo";
|
|
@@ -49088,7 +49088,7 @@ function getModuleSpecifiersWithCacheInfo(moduleSymbol, checker, compilerOptions
|
|
|
49088
49088
|
cache == null ? void 0 : cache.set(importingSourceFile.path, moduleSourceFile.path, userPreferences, options, result.kind, modulePaths, result.moduleSpecifiers);
|
|
49089
49089
|
return result;
|
|
49090
49090
|
}
|
|
49091
|
-
function getLocalModuleSpecifierBetweenFileNames(importingFile, targetFileName, compilerOptions, host, options = {}) {
|
|
49091
|
+
function getLocalModuleSpecifierBetweenFileNames(importingFile, targetFileName, compilerOptions, host, preferences, options = {}) {
|
|
49092
49092
|
const info = getInfo(importingFile.fileName, host);
|
|
49093
49093
|
const importMode = options.overrideImportMode ?? importingFile.impliedNodeFormat;
|
|
49094
49094
|
return getLocalModuleSpecifier(
|
|
@@ -49097,7 +49097,7 @@ function getLocalModuleSpecifierBetweenFileNames(importingFile, targetFileName,
|
|
|
49097
49097
|
compilerOptions,
|
|
49098
49098
|
host,
|
|
49099
49099
|
importMode,
|
|
49100
|
-
getModuleSpecifierPreferences(
|
|
49100
|
+
getModuleSpecifierPreferences(preferences, host, compilerOptions, importingFile)
|
|
49101
49101
|
);
|
|
49102
49102
|
}
|
|
49103
49103
|
function computeModuleSpecifiers(modulePaths, compilerOptions, importingSourceFile, host, userPreferences, options = {}, forAutoImport) {
|
|
@@ -82667,6 +82667,7 @@ function createTypeChecker(host) {
|
|
|
82667
82667
|
case 214 /* NewExpression */:
|
|
82668
82668
|
case 211 /* PropertyAccessExpression */:
|
|
82669
82669
|
case 229 /* YieldExpression */:
|
|
82670
|
+
case 110 /* ThisKeyword */:
|
|
82670
82671
|
return 3 /* Sometimes */;
|
|
82671
82672
|
case 226 /* BinaryExpression */:
|
|
82672
82673
|
switch (node.operatorToken.kind) {
|
|
@@ -155274,7 +155275,8 @@ function createImportAdderWorker(sourceFile, program, useAutoImportProvider, pre
|
|
|
155274
155275
|
sourceFile,
|
|
155275
155276
|
exportingFileName,
|
|
155276
155277
|
compilerOptions,
|
|
155277
|
-
createModuleSpecifierResolutionHost(program, host)
|
|
155278
|
+
createModuleSpecifierResolutionHost(program, host),
|
|
155279
|
+
preferences
|
|
155278
155280
|
);
|
|
155279
155281
|
const importKind = getImportKind(futureExportingSourceFile, exportKind, program);
|
|
155280
155282
|
const addAsTypeOnly = getAddAsTypeOnly(
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@types/node": "^18.18.0",
|
|
10
10
|
"browser-sync": "^3.0.0",
|
|
11
11
|
"express": "^4.18.2",
|
|
12
|
-
"jasmine-core": "~5.
|
|
12
|
+
"jasmine-core": "~5.3.0",
|
|
13
13
|
"jasmine-spec-reporter": "~7.0.0",
|
|
14
14
|
"karma-chrome-launcher": "~3.2.0",
|
|
15
15
|
"karma-coverage": "~2.2.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"rxjs": "~7.8.0",
|
|
24
24
|
"tslib": "^2.3.0",
|
|
25
25
|
"ts-node": "~10.9.0",
|
|
26
|
-
"typescript": "~5.
|
|
26
|
+
"typescript": "~5.6.2",
|
|
27
27
|
"zone.js": "~0.15.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -15,6 +15,6 @@ exports.latestVersions = {
|
|
|
15
15
|
...dependencies,
|
|
16
16
|
// As Angular CLI works with same minor versions of Angular Framework, a tilde match for the current
|
|
17
17
|
Angular: dependencies['@angular/core'],
|
|
18
|
-
DevkitBuildAngular: '^19.0.0-next.
|
|
19
|
-
AngularSSR: '^19.0.0-next.
|
|
18
|
+
DevkitBuildAngular: '^19.0.0-next.4',
|
|
19
|
+
AngularSSR: '^19.0.0-next.4',
|
|
20
20
|
};
|