@nx/angular 16.4.0-beta.1 → 16.4.0-beta.13
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/migrations.json +89 -3
- package/package.json +13 -14
- package/plugins/component-testing.js +1 -1
- package/src/executors/ng-packagr-lite/ng-packagr-adjustments/styles/stylesheet-processor.js +2 -2
- package/src/executors/package/ng-packagr-adjustments/styles/stylesheet-processor.js +1 -1
- package/src/generators/component/lib/module.js +1 -0
- package/src/generators/cypress-component-configuration/cypress-component-configuration.js +13 -10
- package/src/migrations/update-16-4-0/rename-angular-eslint-accesibility-rules.d.ts +2 -0
- package/src/migrations/update-16-4-0/rename-angular-eslint-accesibility-rules.js +37 -0
- package/src/migrations/update-16-4-0/update-angular-cli.d.ts +3 -0
- package/src/migrations/update-16-4-0/update-angular-cli.js +27 -0
- package/src/utils/test-runners.js +2 -2
- package/src/utils/versions.d.ts +4 -4
- package/src/utils/versions.js +4 -4
- package/index.cjs +0 -5
- package/index.d.cts +0 -1
package/migrations.json
CHANGED
|
@@ -245,6 +245,24 @@
|
|
|
245
245
|
},
|
|
246
246
|
"description": "Switch the data persistence operator imports to '@ngrx/router-store/data-persistence'.",
|
|
247
247
|
"factory": "./src/migrations/update-16-2-0/switch-data-persistence-operators-imports-to-ngrx-router-store"
|
|
248
|
+
},
|
|
249
|
+
"rename-angular-eslint-accesibility-rules": {
|
|
250
|
+
"cli": "nx",
|
|
251
|
+
"version": "16.4.0-beta.6",
|
|
252
|
+
"requires": {
|
|
253
|
+
"@angular-eslint/eslint-plugin-template": ">=16.0.0"
|
|
254
|
+
},
|
|
255
|
+
"description": "Remove the 'accessibility-' prefix from '@angular-eslint/eslint-plugin-template' rules.",
|
|
256
|
+
"factory": "./src/migrations/update-16-4-0/rename-angular-eslint-accesibility-rules"
|
|
257
|
+
},
|
|
258
|
+
"update-angular-cli-version-16-1-0": {
|
|
259
|
+
"cli": "nx",
|
|
260
|
+
"version": "16.4.0-beta.11",
|
|
261
|
+
"requires": {
|
|
262
|
+
"@angular/core": ">=16.1.0"
|
|
263
|
+
},
|
|
264
|
+
"description": "Update the @angular/cli package version to ~16.1.0.",
|
|
265
|
+
"factory": "./src/migrations/update-16-4-0/update-angular-cli"
|
|
248
266
|
}
|
|
249
267
|
},
|
|
250
268
|
"packageJsonUpdates": {
|
|
@@ -464,7 +482,8 @@
|
|
|
464
482
|
"14.4.0": {
|
|
465
483
|
"version": "14.4.0-beta.1",
|
|
466
484
|
"requires": {
|
|
467
|
-
"eslint": "^7.0.0 || ^8.0.0"
|
|
485
|
+
"eslint": "^7.0.0 || ^8.0.0",
|
|
486
|
+
"@angular/core": ">=14.0.0 <15.0.0"
|
|
468
487
|
},
|
|
469
488
|
"packages": {
|
|
470
489
|
"@angular-eslint/eslint-plugin": {
|
|
@@ -674,6 +693,10 @@
|
|
|
674
693
|
},
|
|
675
694
|
"14.8.0-angular-eslint": {
|
|
676
695
|
"version": "14.8.0-beta.0",
|
|
696
|
+
"requires": {
|
|
697
|
+
"eslint": "^7.0.0 || ^8.0.0",
|
|
698
|
+
"@angular/core": ">=14.0.0 <15.0.0"
|
|
699
|
+
},
|
|
677
700
|
"packages": {
|
|
678
701
|
"@angular-eslint/eslint-plugin": {
|
|
679
702
|
"version": "~14.0.4",
|
|
@@ -769,7 +792,8 @@
|
|
|
769
792
|
"15.2.2-angular-eslint": {
|
|
770
793
|
"version": "15.2.2-beta.0",
|
|
771
794
|
"requires": {
|
|
772
|
-
"eslint": "^7.20.0 || ^8.0.0"
|
|
795
|
+
"eslint": "^7.20.0 || ^8.0.0",
|
|
796
|
+
"@angular/core": ">=15.0.0 <16.0.0"
|
|
773
797
|
},
|
|
774
798
|
"packages": {
|
|
775
799
|
"@angular-eslint/eslint-plugin": {
|
|
@@ -1099,7 +1123,8 @@
|
|
|
1099
1123
|
"16.1.0-angular-eslint": {
|
|
1100
1124
|
"version": "16.1.0-beta.1",
|
|
1101
1125
|
"requires": {
|
|
1102
|
-
"eslint": "^7.20.0 || ^8.0.0"
|
|
1126
|
+
"eslint": "^7.20.0 || ^8.0.0",
|
|
1127
|
+
"@angular/core": ">=16.0.0 <17.0.0"
|
|
1103
1128
|
},
|
|
1104
1129
|
"packages": {
|
|
1105
1130
|
"@angular-eslint/eslint-plugin": {
|
|
@@ -1143,6 +1168,67 @@
|
|
|
1143
1168
|
"alwaysAddToPackageJson": false
|
|
1144
1169
|
}
|
|
1145
1170
|
}
|
|
1171
|
+
},
|
|
1172
|
+
"16.4.0": {
|
|
1173
|
+
"version": "16.4.0-beta.11",
|
|
1174
|
+
"x-prompt": "Do you want to update the Angular version to v16.1?",
|
|
1175
|
+
"requires": {
|
|
1176
|
+
"@angular/core": ">=16.0.0 <16.1.0"
|
|
1177
|
+
},
|
|
1178
|
+
"packages": {
|
|
1179
|
+
"@angular-devkit/architect": {
|
|
1180
|
+
"version": "~0.1601.0",
|
|
1181
|
+
"alwaysAddToPackageJson": false
|
|
1182
|
+
},
|
|
1183
|
+
"@angular-devkit/build-angular": {
|
|
1184
|
+
"version": "~16.1.0",
|
|
1185
|
+
"alwaysAddToPackageJson": false
|
|
1186
|
+
},
|
|
1187
|
+
"@angular-devkit/build-webpack": {
|
|
1188
|
+
"version": "~0.1601.0",
|
|
1189
|
+
"alwaysAddToPackageJson": false
|
|
1190
|
+
},
|
|
1191
|
+
"@angular-devkit/core": {
|
|
1192
|
+
"version": "~16.1.0",
|
|
1193
|
+
"alwaysAddToPackageJson": false
|
|
1194
|
+
},
|
|
1195
|
+
"@angular-devkit/schematics": {
|
|
1196
|
+
"version": "~16.1.0",
|
|
1197
|
+
"alwaysAddToPackageJson": false
|
|
1198
|
+
},
|
|
1199
|
+
"@angular/core": {
|
|
1200
|
+
"version": "~16.1.0",
|
|
1201
|
+
"alwaysAddToPackageJson": true
|
|
1202
|
+
},
|
|
1203
|
+
"@angular/material": {
|
|
1204
|
+
"version": "~16.1.0",
|
|
1205
|
+
"alwaysAddToPackageJson": false
|
|
1206
|
+
},
|
|
1207
|
+
"@angular/cdk": {
|
|
1208
|
+
"version": "~16.1.0",
|
|
1209
|
+
"alwaysAddToPackageJson": false
|
|
1210
|
+
},
|
|
1211
|
+
"@nguniversal/builders": {
|
|
1212
|
+
"version": "~16.1.0",
|
|
1213
|
+
"alwaysAddToPackageJson": false
|
|
1214
|
+
},
|
|
1215
|
+
"@nguniversal/common": {
|
|
1216
|
+
"version": "~16.1.0",
|
|
1217
|
+
"alwaysAddToPackageJson": false
|
|
1218
|
+
},
|
|
1219
|
+
"@nguniversal/express-engine": {
|
|
1220
|
+
"version": "~16.1.0",
|
|
1221
|
+
"alwaysAddToPackageJson": false
|
|
1222
|
+
},
|
|
1223
|
+
"@schematics/angular": {
|
|
1224
|
+
"version": "~16.1.0",
|
|
1225
|
+
"alwaysAddToPackageJson": false
|
|
1226
|
+
},
|
|
1227
|
+
"ng-packagr": {
|
|
1228
|
+
"version": "~16.1.0",
|
|
1229
|
+
"alwaysAddToPackageJson": false
|
|
1230
|
+
}
|
|
1231
|
+
}
|
|
1146
1232
|
}
|
|
1147
1233
|
}
|
|
1148
1234
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/angular",
|
|
3
|
-
"version": "16.4.0-beta.
|
|
3
|
+
"version": "16.4.0-beta.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, and Cypress. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Upgrading AngularJS applications \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
|
|
6
6
|
"repository": {
|
|
@@ -31,16 +31,15 @@
|
|
|
31
31
|
"./src/executors/*/schema.json": "./src/executors/*/schema.json",
|
|
32
32
|
"./src/executors/*.impl": "./src/executors/*.impl.js",
|
|
33
33
|
"./src/executors/*/compat": "./src/executors/*/compat.js",
|
|
34
|
+
"./package.json": {
|
|
35
|
+
"default": "./package.json"
|
|
36
|
+
},
|
|
34
37
|
".": {
|
|
35
|
-
"require": "./index.cjs",
|
|
36
38
|
"types": "./index.d.ts",
|
|
37
39
|
"esm2022": "./esm2022/nx-angular.mjs",
|
|
38
40
|
"esm": "./esm2022/nx-angular.mjs",
|
|
39
41
|
"default": "./fesm2022/nx-angular.mjs"
|
|
40
42
|
},
|
|
41
|
-
"./package.json": {
|
|
42
|
-
"default": "./package.json"
|
|
43
|
-
},
|
|
44
43
|
"./mf": {
|
|
45
44
|
"types": "./mf/index.d.ts",
|
|
46
45
|
"esm2022": "./esm2022/mf/nx-angular-mf.mjs",
|
|
@@ -67,14 +66,14 @@
|
|
|
67
66
|
"migrations": "./migrations.json"
|
|
68
67
|
},
|
|
69
68
|
"dependencies": {
|
|
70
|
-
"@nrwl/angular": "16.4.0-beta.
|
|
71
|
-
"@nx/cypress": "16.4.0-beta.
|
|
72
|
-
"@nx/devkit": "16.4.0-beta.
|
|
73
|
-
"@nx/jest": "16.4.0-beta.
|
|
74
|
-
"@nx/js": "16.4.0-beta.
|
|
75
|
-
"@nx/linter": "16.4.0-beta.
|
|
76
|
-
"@nx/webpack": "16.4.0-beta.
|
|
77
|
-
"@nx/workspace": "16.4.0-beta.
|
|
69
|
+
"@nrwl/angular": "16.4.0-beta.13",
|
|
70
|
+
"@nx/cypress": "16.4.0-beta.13",
|
|
71
|
+
"@nx/devkit": "16.4.0-beta.13",
|
|
72
|
+
"@nx/jest": "16.4.0-beta.13",
|
|
73
|
+
"@nx/js": "16.4.0-beta.13",
|
|
74
|
+
"@nx/linter": "16.4.0-beta.13",
|
|
75
|
+
"@nx/webpack": "16.4.0-beta.13",
|
|
76
|
+
"@nx/workspace": "16.4.0-beta.13",
|
|
78
77
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
79
78
|
"@typescript-eslint/type-utils": "^5.36.1",
|
|
80
79
|
"chalk": "^4.1.0",
|
|
@@ -110,5 +109,5 @@
|
|
|
110
109
|
"module": "fesm2022/nx-angular.mjs",
|
|
111
110
|
"typings": "index.d.ts",
|
|
112
111
|
"sideEffects": false,
|
|
113
|
-
"gitHead": "
|
|
112
|
+
"gitHead": "d81afedfcc8d07db8cdb9b0e9286de0321ee184e"
|
|
114
113
|
}
|
|
@@ -57,7 +57,7 @@ ${e.stack ? e.stack : e}`);
|
|
|
57
57
|
: undefined;
|
|
58
58
|
const buildContext = (0, ct_helpers_1.createExecutorContext)(graph, (_e = graph.nodes[buildTarget.project]) === null || _e === void 0 ? void 0 : _e.data.targets, buildTarget.project, buildTarget.target, buildTarget.configuration);
|
|
59
59
|
const buildableProjectConfig = normalizeBuildTargetOptions(buildContext, ctContext, offset);
|
|
60
|
-
return Object.assign(Object.assign({}, (0, cypress_preset_1.nxBaseCypressPreset)(pathToConfig)), {
|
|
60
|
+
return Object.assign(Object.assign({}, (0, cypress_preset_1.nxBaseCypressPreset)(pathToConfig, { testingType: 'component' })), {
|
|
61
61
|
// NOTE: cannot use a glob pattern since it will break cypress generated tsconfig.
|
|
62
62
|
specPattern: ['src/**/*.cy.ts', 'src/**/*.cy.js'],
|
|
63
63
|
// cypress defaults to a relative path from the workspaceRoot instead of projectRoot
|
|
@@ -27,14 +27,14 @@ var CssUrl;
|
|
|
27
27
|
(function (CssUrl) {
|
|
28
28
|
CssUrl["inline"] = "inline";
|
|
29
29
|
CssUrl["none"] = "none";
|
|
30
|
-
})(CssUrl
|
|
30
|
+
})(CssUrl || (exports.CssUrl = CssUrl = {}));
|
|
31
31
|
var InlineStyleLanguage;
|
|
32
32
|
(function (InlineStyleLanguage) {
|
|
33
33
|
InlineStyleLanguage["sass"] = "sass";
|
|
34
34
|
InlineStyleLanguage["scss"] = "scss";
|
|
35
35
|
InlineStyleLanguage["css"] = "css";
|
|
36
36
|
InlineStyleLanguage["less"] = "less";
|
|
37
|
-
})(InlineStyleLanguage
|
|
37
|
+
})(InlineStyleLanguage || (exports.InlineStyleLanguage = InlineStyleLanguage = {}));
|
|
38
38
|
class StylesheetProcessor {
|
|
39
39
|
constructor(basePath, cssUrl, includePaths, cacheDirectory, watch, tailwindConfig) {
|
|
40
40
|
// By default, browserslist defaults are too inclusive
|
|
@@ -27,7 +27,7 @@ var CssUrl;
|
|
|
27
27
|
(function (CssUrl) {
|
|
28
28
|
CssUrl["inline"] = "inline";
|
|
29
29
|
CssUrl["none"] = "none";
|
|
30
|
-
})(CssUrl
|
|
30
|
+
})(CssUrl || (exports.CssUrl = CssUrl = {}));
|
|
31
31
|
class StylesheetProcessor {
|
|
32
32
|
constructor(basePath, cssUrl, includePaths, cacheDirectory, watch, tailwindConfig) {
|
|
33
33
|
// By default, browserslist defaults are too inclusive
|
|
@@ -28,6 +28,7 @@ function findModuleFromOptions(tree, options, projectRoot) {
|
|
|
28
28
|
for (const c of candidatesDirs) {
|
|
29
29
|
const candidateFiles = [
|
|
30
30
|
'',
|
|
31
|
+
moduleBaseName,
|
|
31
32
|
`${moduleBaseName}.ts`,
|
|
32
33
|
`${moduleBaseName}${moduleExt}`,
|
|
33
34
|
].map((x) => (0, devkit_1.joinPathFragments)(c, x));
|
|
@@ -66,16 +66,19 @@ function addFiles(tree, projectConfig, options) {
|
|
|
66
66
|
}
|
|
67
67
|
function updateProjectConfig(tree, options) {
|
|
68
68
|
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
69
|
+
let found = { target: options.buildTarget, config: undefined };
|
|
70
|
+
if (!options.buildTarget) {
|
|
71
|
+
found = yield (0, find_target_options_1.findBuildConfig)(tree, {
|
|
72
|
+
project: options.project,
|
|
73
|
+
buildTarget: options.buildTarget,
|
|
74
|
+
validExecutorNames: new Set([
|
|
75
|
+
'@nx/angular:webpack-browser',
|
|
76
|
+
'@nrwl/angular:webpack-browser',
|
|
77
|
+
'@angular-devkit/build-angular:browser',
|
|
78
|
+
]),
|
|
79
|
+
});
|
|
80
|
+
assertValidConfig(found === null || found === void 0 ? void 0 : found.config);
|
|
81
|
+
}
|
|
79
82
|
const projectConfig = (0, devkit_1.readProjectConfiguration)(tree, options.project);
|
|
80
83
|
projectConfig.targets['component-test'].options = Object.assign(Object.assign({}, projectConfig.targets['component-test'].options), { skipServe: true, devServerTarget: found.target });
|
|
81
84
|
(0, devkit_1.updateProjectConfiguration)(tree, options.project, projectConfig);
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
|
5
|
+
// https://github.com/angular-eslint/angular-eslint/blob/24a4de54a8991c93924abf1dfb78b132a6269aef/packages/schematics/src/migrations/update-16-0-0/update-16-0-0.ts
|
|
6
|
+
function default_1(tree) {
|
|
7
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
8
|
+
(0, devkit_1.visitNotIgnoredFiles)(tree, '.', (filePath) => {
|
|
9
|
+
if (!filePath.endsWith('.eslintrc.json')) {
|
|
10
|
+
return;
|
|
11
|
+
}
|
|
12
|
+
(0, devkit_1.updateJson)(tree, filePath, (json) => {
|
|
13
|
+
if (json.overrides) {
|
|
14
|
+
for (const override of json.overrides) {
|
|
15
|
+
modifyRules(override);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
modifyRules(json);
|
|
19
|
+
return json;
|
|
20
|
+
});
|
|
21
|
+
});
|
|
22
|
+
yield (0, devkit_1.formatFiles)(tree);
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
exports.default = default_1;
|
|
26
|
+
function modifyRules(parent) {
|
|
27
|
+
if (!parent.rules) {
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
for (const rule of Object.keys(parent.rules)) {
|
|
31
|
+
if (rule.startsWith('@angular-eslint/template/accessibility-')) {
|
|
32
|
+
const ruleConfig = parent.rules[rule];
|
|
33
|
+
parent.rules[rule.replace('@angular-eslint/template/accessibility-', '@angular-eslint/template/')] = ruleConfig;
|
|
34
|
+
delete parent.rules[rule];
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.angularCliVersion = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const devkit_1 = require("@nx/devkit");
|
|
6
|
+
exports.angularCliVersion = '~16.1.0';
|
|
7
|
+
function default_1(tree) {
|
|
8
|
+
return tslib_1.__awaiter(this, void 0, void 0, function* () {
|
|
9
|
+
let shouldFormat = false;
|
|
10
|
+
(0, devkit_1.updateJson)(tree, 'package.json', (json) => {
|
|
11
|
+
var _a, _b;
|
|
12
|
+
if ((_a = json.devDependencies) === null || _a === void 0 ? void 0 : _a['@angular/cli']) {
|
|
13
|
+
json.devDependencies['@angular/cli'] = exports.angularCliVersion;
|
|
14
|
+
shouldFormat = true;
|
|
15
|
+
}
|
|
16
|
+
else if ((_b = json.dependencies) === null || _b === void 0 ? void 0 : _b['@angular/cli']) {
|
|
17
|
+
json.dependencies['@angular/cli'] = exports.angularCliVersion;
|
|
18
|
+
shouldFormat = true;
|
|
19
|
+
}
|
|
20
|
+
return json;
|
|
21
|
+
});
|
|
22
|
+
if (shouldFormat) {
|
|
23
|
+
yield (0, devkit_1.formatFiles)(tree);
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
exports.default = default_1;
|
|
@@ -5,9 +5,9 @@ var UnitTestRunner;
|
|
|
5
5
|
(function (UnitTestRunner) {
|
|
6
6
|
UnitTestRunner["Jest"] = "jest";
|
|
7
7
|
UnitTestRunner["None"] = "none";
|
|
8
|
-
})(UnitTestRunner
|
|
8
|
+
})(UnitTestRunner || (exports.UnitTestRunner = UnitTestRunner = {}));
|
|
9
9
|
var E2eTestRunner;
|
|
10
10
|
(function (E2eTestRunner) {
|
|
11
11
|
E2eTestRunner["Cypress"] = "cypress";
|
|
12
12
|
E2eTestRunner["None"] = "none";
|
|
13
|
-
})(E2eTestRunner
|
|
13
|
+
})(E2eTestRunner || (exports.E2eTestRunner = E2eTestRunner = {}));
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
|
-
export declare const angularVersion = "~16.
|
|
3
|
-
export declare const angularDevkitVersion = "~16.
|
|
4
|
-
export declare const ngPackagrVersion = "~16.
|
|
2
|
+
export declare const angularVersion = "~16.1.0";
|
|
3
|
+
export declare const angularDevkitVersion = "~16.1.0";
|
|
4
|
+
export declare const ngPackagrVersion = "~16.1.0";
|
|
5
5
|
export declare const ngrxVersion = "~16.0.0";
|
|
6
6
|
export declare const rxjsVersion = "~7.8.0";
|
|
7
7
|
export declare const zoneJsVersion = "~0.13.0";
|
|
8
8
|
export declare const angularJsVersion = "1.7.9";
|
|
9
9
|
export declare const tsLibVersion = "^2.3.0";
|
|
10
|
-
export declare const ngUniversalVersion = "~16.
|
|
10
|
+
export declare const ngUniversalVersion = "~16.1.0";
|
|
11
11
|
export declare const corsVersion = "~2.8.5";
|
|
12
12
|
export declare const typesCorsVersion = "~2.8.5";
|
|
13
13
|
export declare const expressVersion = "~4.18.2";
|
package/src/utils/versions.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.jasmineMarblesVersion = exports.typesNodeVersion = exports.jestPresetAngularVersion = exports.tsNodeVersion = exports.autoprefixerVersion = exports.postcssUrlVersion = exports.postcssPresetEnvVersion = exports.postcssImportVersion = exports.postcssVersion = exports.tailwindVersion = exports.angularEslintVersion = exports.moduleFederationNodeVersion = exports.typesExpressVersion = exports.expressVersion = exports.typesCorsVersion = exports.corsVersion = exports.ngUniversalVersion = exports.tsLibVersion = exports.angularJsVersion = exports.zoneJsVersion = exports.rxjsVersion = exports.ngrxVersion = exports.ngPackagrVersion = exports.angularDevkitVersion = exports.angularVersion = exports.nxVersion = void 0;
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
|
-
exports.angularVersion = '~16.
|
|
6
|
-
exports.angularDevkitVersion = '~16.
|
|
7
|
-
exports.ngPackagrVersion = '~16.
|
|
5
|
+
exports.angularVersion = '~16.1.0';
|
|
6
|
+
exports.angularDevkitVersion = '~16.1.0';
|
|
7
|
+
exports.ngPackagrVersion = '~16.1.0';
|
|
8
8
|
exports.ngrxVersion = '~16.0.0';
|
|
9
9
|
exports.rxjsVersion = '~7.8.0';
|
|
10
10
|
exports.zoneJsVersion = '~0.13.0';
|
|
11
11
|
exports.angularJsVersion = '1.7.9';
|
|
12
12
|
exports.tsLibVersion = '^2.3.0';
|
|
13
|
-
exports.ngUniversalVersion = '~16.
|
|
13
|
+
exports.ngUniversalVersion = '~16.1.0';
|
|
14
14
|
exports.corsVersion = '~2.8.5';
|
|
15
15
|
exports.typesCorsVersion = '~2.8.5';
|
|
16
16
|
exports.expressVersion = '~4.18.2';
|
package/index.cjs
DELETED
package/index.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|