@nrwl/nx-plugin 15.6.1 → 15.7.0-beta.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.1](https://github.com/nrwl/nx/compare/15.6.0...15.6.1) (2023-01-24)
6
+ # [15.7.0-beta.0](https://github.com/nrwl/nx/compare/15.6.0...15.7.0-beta.0) (2023-01-26)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/nx-plugin
package/README.md CHANGED
@@ -59,7 +59,7 @@ npx nx@latest init
59
59
 
60
60
  - [Nx.Dev: Documentation, Guides, Tutorials](https://nx.dev)
61
61
  - [Intro to Nx](https://nx.dev/getting-started/intro)
62
- - [Official Nx YouTube Channel](https://www.youtube.com/c/Nrwl_io)
62
+ - [Official Nx YouTube Channel](https://www.youtube.com/@NxDevtools)
63
63
  - [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
64
64
 
65
65
  <p style="text-align: center;"><a href="https://nx.dev/#learning-materials" target="_blank" rel="noreferrer"><img src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-courses-and-videos.svg"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/nx-plugin",
3
- "version": "15.6.1",
3
+ "version": "15.7.0-beta.0",
4
4
  "private": false,
5
5
  "description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
6
6
  "repository": {
@@ -28,10 +28,10 @@
28
28
  "migrations": "./migrations.json"
29
29
  },
30
30
  "dependencies": {
31
- "@nrwl/devkit": "15.6.1",
32
- "@nrwl/jest": "15.6.1",
33
- "@nrwl/js": "15.6.1",
34
- "@nrwl/linter": "15.6.1",
31
+ "@nrwl/devkit": "15.7.0-beta.0",
32
+ "@nrwl/jest": "15.7.0-beta.0",
33
+ "@nrwl/js": "15.7.0-beta.0",
34
+ "@nrwl/linter": "15.7.0-beta.0",
35
35
  "dotenv": "~10.0.0",
36
36
  "fs-extra": "^11.1.0",
37
37
  "tslib": "^2.3.0"
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "1444f585f4aae09c250b81ac5661205a20fe218c"
42
+ "gitHead": "657f62aff3c32cdefd1f562eb38d3acfe2025c94"
43
43
  }
@@ -29,6 +29,12 @@
29
29
  "type": "string",
30
30
  "description": "Jest config file."
31
31
  },
32
+ "standaloneConfig": {
33
+ "description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
34
+ "type": "boolean",
35
+ "default": true,
36
+ "x-deprecated": "Nx only supports standaloneConfig"
37
+ },
32
38
  "minimal": {
33
39
  "type": "boolean",
34
40
  "description": "Generate the e2e project with a minimal setup. This would involve not generating tests for a default executor and generator.",
@@ -9,7 +9,7 @@ describe('<%= name %> generator', () => {
9
9
  const options: <%= className %>GeneratorSchema = { name: 'test' };
10
10
 
11
11
  beforeEach(() => {
12
- appTree = createTreeWithEmptyWorkspace();
12
+ appTree = createTreeWithEmptyWorkspace({layout: 'apps-libs'});
13
13
  });
14
14
 
15
15
  it('should run successfully', async () => {
@@ -71,6 +71,12 @@
71
71
  "description": "Test runner to use for end to end (E2E) tests.",
72
72
  "default": "jest"
73
73
  },
74
+ "standaloneConfig": {
75
+ "description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
76
+ "type": "boolean",
77
+ "default": true,
78
+ "x-deprecated": "Nx only supports standaloneConfig"
79
+ },
74
80
  "setParserOptionsProject": {
75
81
  "type": "boolean",
76
82
  "description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",