ng-alain 16.0.0 → 16.0.1

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.
@@ -106,7 +106,8 @@ module.exports = {
106
106
  'prefer-template': 'error',
107
107
  'prefer-const': 'off',
108
108
  'max-len': 'off',
109
- 'deprecation/deprecation': 'warn'
109
+ 'deprecation/deprecation': 'warn',
110
+ 'jsdoc/newline-after-description': 'off'
110
111
  }
111
112
  },
112
113
  {
@@ -31,7 +31,8 @@
31
31
  ]
32
32
  }
33
33
  ],
34
- "import-notation": "string"
34
+ "import-notation": "string",
35
+ "media-feature-range-notation": "prefix"
35
36
  },
36
37
  "ignoreFiles": [
37
38
  "src/assets/**/*"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-alain",
3
- "version": "16.0.0",
3
+ "version": "16.0.1",
4
4
  "description": "Schematics specific to ng-alain",
5
5
  "author": "cipchk<cipchk@qq.com>",
6
6
  "license": "MIT",
@@ -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 = '^16.0.0';
5
- exports.ZORROVERSION = '^16.0.0-beta.0';
4
+ exports.VERSION = '^16.0.1';
5
+ exports.ZORROVERSION = '^16.0.0';
6
6
  //# sourceMappingURL=lib-versions.js.map
@@ -1,2 +1,2 @@
1
- export const VERSION = '^16.0.0';
2
- export const ZORROVERSION = '^16.0.0-beta.0';
1
+ export const VERSION = '^16.0.1';
2
+ export const ZORROVERSION = '^16.0.0';
package/utils/versions.js CHANGED
@@ -43,7 +43,7 @@ function UpgradeMainVersions(tree, version = lib_versions_1.VERSION) {
43
43
  `@angular/language-service@^16.0.3`,
44
44
  `@delon/testing@${version}`
45
45
  ], 'devDependencies');
46
- (0, package_1.addPackage)(tree, [`rxjs@~7.8.0`, `ng-zorro-antd@^16.0.0-beta.0`]);
46
+ (0, package_1.addPackage)(tree, [`rxjs@~7.8.0`, `ng-zorro-antd@^16.0.0`]);
47
47
  }
48
48
  exports.UpgradeMainVersions = UpgradeMainVersions;
49
49
  function addESLintRule(context, showLog = true) {
package/utils/versions.ts CHANGED
@@ -41,7 +41,7 @@ export function UpgradeMainVersions(tree: Tree, version: string = VERSION): void
41
41
  ],
42
42
  'devDependencies'
43
43
  );
44
- addPackage(tree, [`rxjs@~7.8.0`, `ng-zorro-antd@^16.0.0-beta.0`]);
44
+ addPackage(tree, [`rxjs@~7.8.0`, `ng-zorro-antd@^16.0.0`]);
45
45
  }
46
46
 
47
47
  export function addESLintRule(context: SchematicContext, showLog: Boolean = true): Rule {