ng-alain 13.2.1 → 13.3.0
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/application/index.js +4 -4
- package/application/index.ts +4 -4
- package/package.json +1 -1
- package/plugin/plugin.sts.js +1 -1
- package/plugin/plugin.sts.ts +1 -1
- package/utils/lib-versions.js +1 -1
- package/utils/lib-versions.ts +1 -1
- package/utils/versions.js +11 -11
- package/utils/versions.ts +11 -11
package/application/index.js
CHANGED
|
@@ -64,7 +64,7 @@ function addDependenciesToPackageJson(options) {
|
|
|
64
64
|
return (tree) => {
|
|
65
65
|
(0, versions_1.UpgradeMainVersions)(tree);
|
|
66
66
|
// 3rd
|
|
67
|
-
(0, utils_1.addPackage)(tree, ['screenfull@^6.0.
|
|
67
|
+
(0, utils_1.addPackage)(tree, ['screenfull@^6.0.1']);
|
|
68
68
|
return tree;
|
|
69
69
|
};
|
|
70
70
|
}
|
|
@@ -124,12 +124,12 @@ function addCodeStylesToPackageJson() {
|
|
|
124
124
|
// dependencies
|
|
125
125
|
(0, utils_1.addPackage)(tree, [
|
|
126
126
|
`husky@^6.0.0`,
|
|
127
|
-
`lint-staged@^12.
|
|
127
|
+
`lint-staged@^12.3.5`,
|
|
128
128
|
`prettier@^2.5.1`,
|
|
129
|
-
`stylelint@^14.
|
|
129
|
+
`stylelint@^14.5.3`,
|
|
130
130
|
`stylelint-config-prettier@^9.0.3`,
|
|
131
131
|
`stylelint-config-rational-order@^0.1.2`,
|
|
132
|
-
`stylelint-config-standard@^
|
|
132
|
+
`stylelint-config-standard@^25.0.0`,
|
|
133
133
|
`stylelint-declaration-block-no-ignored-properties@^2.5.0`,
|
|
134
134
|
`stylelint-order@^5.0.0`
|
|
135
135
|
], 'devDependencies');
|
package/application/index.ts
CHANGED
|
@@ -96,7 +96,7 @@ function addDependenciesToPackageJson(options: ApplicationOptions): Rule {
|
|
|
96
96
|
return (tree: Tree) => {
|
|
97
97
|
UpgradeMainVersions(tree);
|
|
98
98
|
// 3rd
|
|
99
|
-
addPackage(tree, ['screenfull@^6.0.
|
|
99
|
+
addPackage(tree, ['screenfull@^6.0.1']);
|
|
100
100
|
return tree;
|
|
101
101
|
};
|
|
102
102
|
}
|
|
@@ -156,12 +156,12 @@ function addCodeStylesToPackageJson(): Rule {
|
|
|
156
156
|
tree,
|
|
157
157
|
[
|
|
158
158
|
`husky@^6.0.0`,
|
|
159
|
-
`lint-staged@^12.
|
|
159
|
+
`lint-staged@^12.3.5`,
|
|
160
160
|
`prettier@^2.5.1`,
|
|
161
|
-
`stylelint@^14.
|
|
161
|
+
`stylelint@^14.5.3`,
|
|
162
162
|
`stylelint-config-prettier@^9.0.3`,
|
|
163
163
|
`stylelint-config-rational-order@^0.1.2`,
|
|
164
|
-
`stylelint-config-standard@^
|
|
164
|
+
`stylelint-config-standard@^25.0.0`,
|
|
165
165
|
`stylelint-declaration-block-no-ignored-properties@^2.5.0`,
|
|
166
166
|
`stylelint-order@^5.0.0`
|
|
167
167
|
],
|
package/package.json
CHANGED
package/plugin/plugin.sts.js
CHANGED
|
@@ -6,7 +6,7 @@ const tasks_1 = require("@angular-devkit/schematics/tasks");
|
|
|
6
6
|
const utils_1 = require("../utils");
|
|
7
7
|
function fixPackage(options) {
|
|
8
8
|
return (tree) => {
|
|
9
|
-
(options.type === 'add' ? utils_1.addPackage : utils_1.removePackage)(tree, ['ng-alain-sts@^0.0.
|
|
9
|
+
(options.type === 'add' ? utils_1.addPackage : utils_1.removePackage)(tree, ['ng-alain-sts@^0.0.2'], 'devDependencies');
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
12
|
function fixFiles() {
|
package/plugin/plugin.sts.ts
CHANGED
package/utils/lib-versions.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ZORROVERSION = exports.VERSION = void 0;
|
|
4
|
-
exports.VERSION = '^13.
|
|
4
|
+
exports.VERSION = '^13.3.0';
|
|
5
5
|
exports.ZORROVERSION = '^13.1.1';
|
|
6
6
|
//# sourceMappingURL=lib-versions.js.map
|
package/utils/lib-versions.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '^13.
|
|
1
|
+
export const VERSION = '^13.3.0';
|
|
2
2
|
export const ZORROVERSION = '^13.1.1';
|
package/utils/versions.js
CHANGED
|
@@ -21,23 +21,23 @@ const workspace_2 = require("./workspace");
|
|
|
21
21
|
function UpgradeMainVersions(tree, version = lib_versions_1.VERSION) {
|
|
22
22
|
(0, package_1.addPackage)(tree, ['abc', 'acl', 'auth', 'cache', 'form', 'mock', 'theme', 'util', 'chart'].map(name => `@delon/${name}@${version}`));
|
|
23
23
|
(0, package_1.addPackage)(tree, [
|
|
24
|
-
`@angular-eslint/builder@~13.0
|
|
25
|
-
`@angular-eslint/eslint-plugin@~13.0
|
|
26
|
-
`@angular-eslint/eslint-plugin-template@~13.0
|
|
27
|
-
`@angular-eslint/schematics@~13.0
|
|
28
|
-
`@angular-eslint/template-parser@~13.0
|
|
29
|
-
`@typescript-eslint/eslint-plugin@~5.
|
|
30
|
-
`@typescript-eslint/parser@~5.
|
|
31
|
-
`eslint@^8.
|
|
24
|
+
`@angular-eslint/builder@~13.1.0`,
|
|
25
|
+
`@angular-eslint/eslint-plugin@~13.1.0`,
|
|
26
|
+
`@angular-eslint/eslint-plugin-template@~13.1.0`,
|
|
27
|
+
`@angular-eslint/schematics@~13.1.0`,
|
|
28
|
+
`@angular-eslint/template-parser@~13.1.0`,
|
|
29
|
+
`@typescript-eslint/eslint-plugin@~5.14.0`,
|
|
30
|
+
`@typescript-eslint/parser@~5.14.0`,
|
|
31
|
+
`eslint@^8.10.0`,
|
|
32
32
|
`eslint-config-prettier@^2.5.1`,
|
|
33
|
-
`eslint-plugin-import@~2.25.
|
|
34
|
-
`eslint-plugin-jsdoc@~37.
|
|
33
|
+
`eslint-plugin-import@~2.25.4`,
|
|
34
|
+
`eslint-plugin-jsdoc@~37.9.7`,
|
|
35
35
|
`eslint-plugin-prefer-arrow@~1.2.3`,
|
|
36
36
|
`eslint-plugin-prettier@^2.5.1`,
|
|
37
37
|
`prettier@^2.5.1`,
|
|
38
38
|
`husky@^6.0.0`,
|
|
39
39
|
`ng-alain@${version}`,
|
|
40
|
-
`ng-alain-plugin-theme@^13.0.
|
|
40
|
+
`ng-alain-plugin-theme@^13.0.3`,
|
|
41
41
|
`source-map-explorer@^2.5.2`,
|
|
42
42
|
`@angular/language-service@~13.1.1`,
|
|
43
43
|
`@delon/testing@${version}`
|
package/utils/versions.ts
CHANGED
|
@@ -17,23 +17,23 @@ export function UpgradeMainVersions(tree: Tree, version: string = VERSION): void
|
|
|
17
17
|
addPackage(
|
|
18
18
|
tree,
|
|
19
19
|
[
|
|
20
|
-
`@angular-eslint/builder@~13.0
|
|
21
|
-
`@angular-eslint/eslint-plugin@~13.0
|
|
22
|
-
`@angular-eslint/eslint-plugin-template@~13.0
|
|
23
|
-
`@angular-eslint/schematics@~13.0
|
|
24
|
-
`@angular-eslint/template-parser@~13.0
|
|
25
|
-
`@typescript-eslint/eslint-plugin@~5.
|
|
26
|
-
`@typescript-eslint/parser@~5.
|
|
27
|
-
`eslint@^8.
|
|
20
|
+
`@angular-eslint/builder@~13.1.0`,
|
|
21
|
+
`@angular-eslint/eslint-plugin@~13.1.0`,
|
|
22
|
+
`@angular-eslint/eslint-plugin-template@~13.1.0`,
|
|
23
|
+
`@angular-eslint/schematics@~13.1.0`,
|
|
24
|
+
`@angular-eslint/template-parser@~13.1.0`,
|
|
25
|
+
`@typescript-eslint/eslint-plugin@~5.14.0`,
|
|
26
|
+
`@typescript-eslint/parser@~5.14.0`,
|
|
27
|
+
`eslint@^8.10.0`,
|
|
28
28
|
`eslint-config-prettier@^2.5.1`,
|
|
29
|
-
`eslint-plugin-import@~2.25.
|
|
30
|
-
`eslint-plugin-jsdoc@~37.
|
|
29
|
+
`eslint-plugin-import@~2.25.4`,
|
|
30
|
+
`eslint-plugin-jsdoc@~37.9.7`,
|
|
31
31
|
`eslint-plugin-prefer-arrow@~1.2.3`,
|
|
32
32
|
`eslint-plugin-prettier@^2.5.1`,
|
|
33
33
|
`prettier@^2.5.1`,
|
|
34
34
|
`husky@^6.0.0`,
|
|
35
35
|
`ng-alain@${version}`,
|
|
36
|
-
`ng-alain-plugin-theme@^13.0.
|
|
36
|
+
`ng-alain-plugin-theme@^13.0.3`,
|
|
37
37
|
`source-map-explorer@^2.5.2`,
|
|
38
38
|
`@angular/language-service@~13.1.1`,
|
|
39
39
|
`@delon/testing@${version}`
|