@nrwl/nx-plugin 12.10.0-beta.6 → 13.0.0-beta.11

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": "12.10.0-beta.6",
3
+ "version": "13.0.0-beta.11",
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": "12.10.0-beta.6",
31
- "@nrwl/jest": "12.10.0-beta.6",
32
- "@nrwl/linter": "12.10.0-beta.6",
33
- "@nrwl/node": "12.10.0-beta.6",
30
+ "@nrwl/devkit": "13.0.0-beta.11",
31
+ "@nrwl/jest": "13.0.0-beta.11",
32
+ "@nrwl/linter": "13.0.0-beta.11",
33
+ "@nrwl/node": "13.0.0-beta.11",
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 workspace = readJson('workspace.json');
37
+ expect(workspace.projects[plugin].tags).toEqual(['e2etag', 'e2ePackage']);
38
38
  }, 120000);
39
39
  });
40
40
  })
@@ -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 = '12.10.0-beta.6';
4
+ exports.nxVersion = '13.0.0-beta.11';
5
5
  //# sourceMappingURL=versions.js.map