@nrwl/angular 15.6.0-beta.0 → 15.6.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/CHANGELOG.md CHANGED
@@ -3,6 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [15.6.0-beta.0](https://github.com/nrwl/nx/compare/15.5.1...15.6.0-beta.0) (2023-01-23)
6
+ # [15.6.0](https://github.com/nrwl/nx/compare/15.5.1...15.6.0) (2023-01-24)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/angular
package/README.md CHANGED
@@ -43,38 +43,18 @@ npm init nx-workspace
43
43
  yarn create nx-workspace
44
44
  ```
45
45
 
46
- The `create-nx-workspace` command will ask you to select a preset, which will configure some plugins and create your applications to help you get started.
47
-
48
- ```
49
- ? What to create in the new workspace (Use arrow keys)
50
- ❯ apps [an empty workspace with no plugins with a layout that works best for building apps]
51
- core [an empty workspace with no plugins set up to publish npm packages (similar to yarn workspaces)]
52
- ts [an empty workspace with the JS/TS plugin preinstalled]
53
- react [a workspace with a single React application]
54
- angular [a workspace with a single Angular application]
55
- next.js [a workspace with a single Next.js application]
56
- nest [a workspace with a single Nest application]
57
- express [a workspace with a single Express application]
58
- web components [a workspace with a single app built using web components]
59
- react-native [a workspace with a single React Native application]
60
- ```
61
-
62
- Select the preset that works best for you
63
-
64
- ### Adding Nx to an Existing Monorepo
46
+ ### Adding Nx to an Existing Repository
65
47
 
66
48
  Run:
67
49
 
68
50
  ```bash
69
- npx add-nx-to-monorepo@latest
51
+ npx nx@latest init
70
52
  ```
71
53
 
72
54
  ## Documentation & Resources
73
55
 
74
- A few links to help you get started:
75
-
76
- - [Nx.Dev: Documentation, Guides, Interactive Tutorials](https://nx.dev)
77
- - [Tutorial: Adding Nx to an Existing Monorepo](/recipes/adopting-nx/adding-to-monorepo)
56
+ - [Nx.Dev: Documentation, Guides, Tutorials](https://nx.dev)
57
+ - [Intro to Nx](https://nx.dev/getting-started/intro)
78
58
  - [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
79
59
  - [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
80
60
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/angular",
3
- "version": "15.6.0-beta.0",
3
+ "version": "15.6.0",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: \n\n- Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Cypress, Karma, and Protractor. \n\n- Generators to help scaffold code quickly (like: Micro Frontends, Libraries, both internal to your codebase and publishable to npm) \n\n- Upgrading AngularJS applications \n\n- Single Component Application Modules (SCAMs) \n\n- NgRx helpers. \n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -67,12 +67,12 @@
67
67
  },
68
68
  "dependencies": {
69
69
  "@angular-devkit/schematics": "~15.1.0",
70
- "@nrwl/cypress": "15.6.0-beta.0",
71
- "@nrwl/devkit": "15.6.0-beta.0",
72
- "@nrwl/jest": "15.6.0-beta.0",
73
- "@nrwl/linter": "15.6.0-beta.0",
74
- "@nrwl/webpack": "15.6.0-beta.0",
75
- "@nrwl/workspace": "15.6.0-beta.0",
70
+ "@nrwl/cypress": "15.6.0",
71
+ "@nrwl/devkit": "15.6.0",
72
+ "@nrwl/jest": "15.6.0",
73
+ "@nrwl/linter": "15.6.0",
74
+ "@nrwl/webpack": "15.6.0",
75
+ "@nrwl/workspace": "15.6.0",
76
76
  "@phenomnomnominal/tsquery": "4.1.1",
77
77
  "@schematics/angular": "~15.1.0",
78
78
  "chalk": "^4.1.0",
@@ -107,5 +107,5 @@
107
107
  "fesm2015": "fesm2015/nrwl-angular.mjs",
108
108
  "typings": "index.d.ts",
109
109
  "sideEffects": false,
110
- "gitHead": "077b55915b2da6b54f3f6a9f52b0681a1a350580"
110
+ "gitHead": "5ae53c6c3e0895c528bd32b4a42ba699d2f37af3"
111
111
  }
@@ -83,7 +83,8 @@
83
83
  "storybook7betaConfiguration": {
84
84
  "description": "Configure your workspace to use Storybook 7, even though Storybook v7 is still in beta.",
85
85
  "type": "boolean",
86
- "default": false
86
+ "default": false,
87
+ "hidden": true
87
88
  }
88
89
  },
89
90
  "additionalProperties": false,