@nrwl/nx-plugin 13.0.0-beta.7 → 13.0.0-rc.1

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/nx-plugin",
3
- "version": "13.0.0-beta.7",
3
+ "version": "13.0.0-rc.1",
4
4
  "description": "Plugin for creating plugins for Nx :)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,10 +27,10 @@
27
27
  "migrations": "./migrations.json"
28
28
  },
29
29
  "dependencies": {
30
- "@nrwl/devkit": "13.0.0-beta.7",
31
- "@nrwl/jest": "13.0.0-beta.7",
32
- "@nrwl/linter": "13.0.0-beta.7",
33
- "@nrwl/node": "13.0.0-beta.7",
30
+ "@nrwl/devkit": "13.0.0-rc.1",
31
+ "@nrwl/jest": "13.0.0-rc.1",
32
+ "@nrwl/linter": "13.0.0-rc.1",
33
+ "@nrwl/node": "13.0.0-rc.1",
34
34
  "fs-extra": "^9.1.0",
35
35
  "rxjs": "^6.5.4",
36
36
  "tslib": "^2.0.0",
@@ -27,14 +27,14 @@ describe('<%= pluginName %> e2e', () => {
27
27
  });
28
28
 
29
29
  describe('--tags', () => {
30
- it('should add tags to nx.json', async () => {
30
+ it('should add tags to the project', async () => {
31
31
  const plugin = uniq('<%= pluginName %>');
32
32
  ensureNxProject('<%= npmPackageName %>', '<%= pluginOutputPath %>');
33
33
  await runNxCommandAsync(
34
34
  `generate <%=npmPackageName%>:<%= pluginName %> ${plugin} --tags e2etag,e2ePackage`
35
35
  );
36
- const nxJson = readJson('nx.json');
37
- expect(nxJson.projects[plugin].tags).toEqual(['e2etag', 'e2ePackage']);
36
+ const project = readJson(`libs/${plugin}/project.json`);
37
+ expect(project.tags).toEqual(['e2etag', 'e2ePackage']);
38
38
  }, 120000);
39
39
  });
40
40
  })
@@ -32,8 +32,7 @@
32
32
  },
33
33
  "standaloneConfig": {
34
34
  "description": "Split the project configuration into <projectRoot>/project.json rather than including it inside workspace.json",
35
- "type": "boolean",
36
- "default": false
35
+ "type": "boolean"
37
36
  }
38
37
  },
39
38
  "required": ["pluginName", "npmPackageName"],
@@ -58,8 +58,7 @@
58
58
  },
59
59
  "standaloneConfig": {
60
60
  "description": "Split the project configuration into <projectRoot>/project.json rather than including it inside workspace.json",
61
- "type": "boolean",
62
- "default": false
61
+ "type": "boolean"
63
62
  },
64
63
  "setParserOptionsProject": {
65
64
  "type": "boolean",
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.nxVersion = void 0;
4
- exports.nxVersion = '13.0.0-beta.7';
4
+ exports.nxVersion = '13.0.0-rc.1';
5
5
  //# sourceMappingURL=versions.js.map