ng-alain 15.0.0-beta.1 → 15.0.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/ng-add/index.js CHANGED
@@ -58,7 +58,7 @@ function default_1(options) {
58
58
  context.logger.warn(`TIPS:: Please use yarn instead of NPM to install dependencies`);
59
59
  }
60
60
  const nodeVersion = (0, node_1.getNodeMajorVersion)();
61
- const allowNodeVersions = [12, 14, 16];
61
+ const allowNodeVersions = [14, 16, 18];
62
62
  if (!allowNodeVersions.some(v => nodeVersion === v)) {
63
63
  const versions = allowNodeVersions.join(', ');
64
64
  throw new schematics_1.SchematicsException(`Sorry, currently only supports ${versions} major version number of node (Got ${process.version}), pls refer to https://gist.github.com/LayZeeDK/c822cc812f75bb07b7c55d07ba2719b3`);
package/ng-add/index.ts CHANGED
@@ -79,7 +79,7 @@ export default function (options: NgAddOptions): Rule {
79
79
  }
80
80
 
81
81
  const nodeVersion = getNodeMajorVersion();
82
- const allowNodeVersions = [12, 14, 16];
82
+ const allowNodeVersions = [14, 16, 18];
83
83
  if (!allowNodeVersions.some(v => nodeVersion === v)) {
84
84
  const versions = allowNodeVersions.join(', ');
85
85
  throw new SchematicsException(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ng-alain",
3
- "version": "15.0.0-beta.1",
3
+ "version": "15.0.0",
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 = '^15.0.0-beta.1';
4
+ exports.VERSION = '^15.0.0';
5
5
  exports.ZORROVERSION = '^15.0.0';
6
6
  //# sourceMappingURL=lib-versions.js.map
@@ -1,2 +1,2 @@
1
- export const VERSION = '^15.0.0-beta.1';
1
+ export const VERSION = '^15.0.0';
2
2
  export const ZORROVERSION = '^15.0.0';