@nrwl/nx-plugin 13.8.8-beta.1 → 13.8.8

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.8.8-beta.1",
3
+ "version": "13.8.8",
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.8.8-beta.1",
31
- "@nrwl/jest": "13.8.8-beta.1",
32
- "@nrwl/linter": "13.8.8-beta.1",
33
- "@nrwl/js": "13.8.8-beta.1",
30
+ "@nrwl/devkit": "13.8.8",
31
+ "@nrwl/jest": "13.8.8",
32
+ "@nrwl/linter": "13.8.8",
33
+ "@nrwl/js": "13.8.8",
34
34
  "fs-extra": "^9.1.0",
35
35
  "rxjs": "^6.5.4",
36
36
  "tslib": "^2.3.0"
@@ -11,4 +11,5 @@ export interface Schema {
11
11
  linter: Linter;
12
12
  standaloneConfig?: boolean;
13
13
  setParserOptionsProject?: boolean;
14
+ compiler: 'swc' | 'tsc';
14
15
  }
@@ -64,6 +64,12 @@
64
64
  "type": "boolean",
65
65
  "description": "Whether or not to configure the ESLint \"parserOptions.project\" option. We do not do this by default for lint performance reasons.",
66
66
  "default": false
67
+ },
68
+ "compiler": {
69
+ "type": "string",
70
+ "enum": ["tsc", "swc"],
71
+ "default": "tsc",
72
+ "description": "The compiler used by the build and test targets"
67
73
  }
68
74
  },
69
75
  "required": ["name"],
@@ -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.8.8-beta.1';
4
+ exports.nxVersion = '13.8.8';
5
5
  //# sourceMappingURL=versions.js.map