@nrwl/angular 13.4.5-beta.2 → 13.4.5-beta.6
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/README.md +1 -1
- package/executors.d.ts +3 -0
- package/executors.js +7 -0
- package/executors.js.map +1 -0
- package/package.json +7 -6
- package/src/generators/component-story/files/__componentFileName__.stories.ts__tmpl__ +0 -1
- package/src/generators/setup-tailwind/files/v3/tailwind.config.js__tmpl__ +0 -3
- package/src/utils/versions.js +1 -1
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ yarn add @nrwl/angular
|
|
|
39
39
|
npm install @nrwl/angular
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
For more information about the `@nrwl/angular` package take a look at the [Angular Plugin Overview](https://nx.dev/
|
|
42
|
+
For more information about the `@nrwl/angular` package take a look at the [Angular Plugin Overview](https://nx.dev/angular/overview).
|
|
43
43
|
|
|
44
44
|
## What is Nx?
|
|
45
45
|
|
package/executors.d.ts
ADDED
package/executors.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
(0, tslib_1.__exportStar)(require("./src/executors/delegate-build/delegate-build.impl"), exports);
|
|
5
|
+
(0, tslib_1.__exportStar)(require("./src/executors/ng-packagr-lite/ng-packagr-lite.impl"), exports);
|
|
6
|
+
(0, tslib_1.__exportStar)(require("./src/executors/package/package.impl"), exports);
|
|
7
|
+
//# sourceMappingURL=executors.js.map
|
package/executors.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"executors.js","sourceRoot":"","sources":["../../../packages/angular/executors.ts"],"names":[],"mappings":";;;AAAA,kGAAmE;AACnE,oGAAqE;AACrE,oFAAqD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/angular",
|
|
3
|
-
"version": "13.4.5-beta.
|
|
3
|
+
"version": "13.4.5-beta.6",
|
|
4
4
|
"description": "Angular Plugin for Nx",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"exports": {
|
|
21
21
|
"./generators": "./generators.js",
|
|
22
|
+
"./executors": "./executors.js",
|
|
22
23
|
"./tailwind": "./tailwind.js",
|
|
23
24
|
"./src/generators/utils": "./src/generators/utils/index.js",
|
|
24
25
|
"./package.json": {
|
|
@@ -55,11 +56,11 @@
|
|
|
55
56
|
},
|
|
56
57
|
"dependencies": {
|
|
57
58
|
"@angular-devkit/schematics": "~13.1.0",
|
|
58
|
-
"@nrwl/cypress": "13.4.5-beta.
|
|
59
|
-
"@nrwl/devkit": "13.4.5-beta.
|
|
60
|
-
"@nrwl/jest": "13.4.5-beta.
|
|
61
|
-
"@nrwl/linter": "13.4.5-beta.
|
|
62
|
-
"@nrwl/storybook": "13.4.5-beta.
|
|
59
|
+
"@nrwl/cypress": "13.4.5-beta.6",
|
|
60
|
+
"@nrwl/devkit": "13.4.5-beta.6",
|
|
61
|
+
"@nrwl/jest": "13.4.5-beta.6",
|
|
62
|
+
"@nrwl/linter": "13.4.5-beta.6",
|
|
63
|
+
"@nrwl/storybook": "13.4.5-beta.6",
|
|
63
64
|
"@schematics/angular": "~13.1.0",
|
|
64
65
|
"@phenomnomnominal/tsquery": "4.1.1",
|
|
65
66
|
"ignore": "^5.0.4",
|
package/src/utils/versions.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.autoprefixerVersion = exports.postcssVersion = exports.tailwindVersion = exports.angularArchitectsModuleFederationPluginVersion = exports.angularEslintVersion = exports.jestPresetAngularVersion = exports.rxjsVersion = exports.ngrxVersion = exports.angularJsVersion = exports.angularDevkitVersion = exports.angularVersion = exports.nxVersion = void 0;
|
|
4
|
-
exports.nxVersion = '13.4.5-beta.
|
|
4
|
+
exports.nxVersion = '13.4.5-beta.6';
|
|
5
5
|
exports.angularVersion = '~13.1.0';
|
|
6
6
|
exports.angularDevkitVersion = '~13.1.0';
|
|
7
7
|
exports.angularJsVersion = '1.7.9';
|