@nrwl/angular 13.5.0-beta.7 → 13.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/angular",
3
- "version": "13.5.0-beta.7",
3
+ "version": "13.5.0",
4
4
  "description": "Angular Plugin for Nx",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,11 +56,11 @@
56
56
  },
57
57
  "dependencies": {
58
58
  "@angular-devkit/schematics": "~13.1.0",
59
- "@nrwl/cypress": "13.5.0-beta.7",
60
- "@nrwl/devkit": "13.5.0-beta.7",
61
- "@nrwl/jest": "13.5.0-beta.7",
62
- "@nrwl/linter": "13.5.0-beta.7",
63
- "@nrwl/storybook": "13.5.0-beta.7",
59
+ "@nrwl/cypress": "13.5.0",
60
+ "@nrwl/devkit": "13.5.0",
61
+ "@nrwl/jest": "13.5.0",
62
+ "@nrwl/linter": "13.5.0",
63
+ "@nrwl/storybook": "13.5.0",
64
64
  "@schematics/angular": "~13.1.0",
65
65
  "@phenomnomnominal/tsquery": "4.1.1",
66
66
  "ignore": "^5.0.4",
@@ -747,9 +747,9 @@ nx g @nrwl/angular:component button --project ui</pre>
747
747
  d="M8 9l3 3-3 3m5 0h3M5 20h14a2 2 0 002-2V6a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"
748
748
  />
749
749
  </svg>
750
- View interactive dependency graph
750
+ View interactive project graph
751
751
  </summary>
752
- <pre>nx dep-graph</pre>
752
+ <pre>nx graph</pre>
753
753
  </details>
754
754
  <details>
755
755
  <summary>
@@ -769,7 +769,7 @@ nx g @nrwl/angular:component button --project ui</pre>
769
769
  Run affected commands
770
770
  </summary>
771
771
  <pre><span># see what&apos;s been affected by changes</span>
772
- nx affected:dep-graph
772
+ nx affected:graph
773
773
 
774
774
  <span># run tests for current changes</span>
775
775
  nx affected:test
@@ -4,7 +4,7 @@ const { join } = require('path');
4
4
  module.exports = {
5
5
  mode: 'jit',
6
6
  purge: [
7
- join(__dirname, '<%= relativeSourceRoot %>/**/*.{html,ts}'),
7
+ join(__dirname, '<%= relativeSourceRoot %>/**/!(*.stories|*.spec).{ts,html}'),
8
8
  ...createGlobPatternsForDependencies(__dirname),
9
9
  ],
10
10
  darkMode: false, // or 'media' or 'class'
@@ -3,7 +3,7 @@ const { join } = require('path');
3
3
 
4
4
  module.exports = {
5
5
  content: [
6
- join(__dirname, '<%= relativeSourceRoot %>/**/*.{html,ts}'),
6
+ join(__dirname, '<%= relativeSourceRoot %>/**/!(*.stories|*.spec).{ts,html}'),
7
7
  ...createGlobPatternsForDependencies(__dirname),
8
8
  ],
9
9
  theme: {
@@ -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.5.0-beta.7';
4
+ exports.nxVersion = '13.5.0';
5
5
  exports.angularVersion = '~13.1.0';
6
6
  exports.angularDevkitVersion = '~13.1.0';
7
7
  exports.angularJsVersion = '1.7.9';
package/LICENSE DELETED
@@ -1,22 +0,0 @@
1
- (The MIT License)
2
-
3
- Copyright (c) 2017-2022 Narwhal Technologies Inc.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining
6
- a copy of this software and associated documentation files (the
7
- 'Software'), to deal in the Software without restriction, including
8
- without limitation the rights to use, copy, modify, merge, publish,
9
- distribute, sublicense, and/or sell copies of the Software, and to
10
- permit persons to whom the Software is furnished to do so, subject to
11
- the following conditions:
12
-
13
- The above copyright notice and this permission notice shall be
14
- included in all copies or substantial portions of the Software.
15
-
16
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
- IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
- SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.