@nrwl/js 15.7.0-alpha.0 → 15.7.0-alpha.2

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/js",
3
- "version": "15.7.0-alpha.0",
3
+ "version": "15.7.0-alpha.2",
4
4
  "private": false,
5
5
  "description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
6
6
  "repository": {
@@ -39,9 +39,9 @@
39
39
  "@babel/preset-env": "^7.15.0",
40
40
  "@babel/preset-typescript": "^7.15.0",
41
41
  "@babel/runtime": "^7.14.8",
42
- "@nrwl/devkit": "15.7.0-alpha.0",
43
- "@nrwl/linter": "15.7.0-alpha.0",
44
- "@nrwl/workspace": "15.7.0-alpha.0",
42
+ "@nrwl/devkit": "15.7.0-alpha.2",
43
+ "@nrwl/linter": "15.7.0-alpha.2",
44
+ "@nrwl/workspace": "15.7.0-alpha.2",
45
45
  "babel-plugin-const-enum": "^1.0.1",
46
46
  "babel-plugin-macros": "^2.8.0",
47
47
  "babel-plugin-transform-typescript-metadata": "^0.3.1",
@@ -59,5 +59,5 @@
59
59
  "access": "public"
60
60
  },
61
61
  "types": "./src/index.d.ts",
62
- "gitHead": "be7988a3428ba211fba66c0d071f9b486a5ef584"
62
+ "gitHead": "20e163425f3dcc4d47bf7ebce8fb9d1c93c64843"
63
63
  }
@@ -51,7 +51,8 @@
51
51
  "skipTypeCheck": {
52
52
  "type": "boolean",
53
53
  "description": "Whether to skip TypeScript type checking.",
54
- "default": false
54
+ "default": false,
55
+ "x-priority": "important"
55
56
  },
56
57
  "swcExclude": {
57
58
  "type": "array",
@@ -62,7 +63,8 @@
62
63
  "./src/**/jest-setup.ts$",
63
64
  "./**/jest-setup.ts$",
64
65
  "./**/.*.js$"
65
- ]
66
+ ],
67
+ "hidden": true
66
68
  },
67
69
  "updateBuildableProjectDepsInPackageJson": {
68
70
  "type": "boolean",
@@ -51,7 +51,8 @@
51
51
  "default": [],
52
52
  "items": {
53
53
  "$ref": "#/definitions/transformerPattern"
54
- }
54
+ },
55
+ "x-priority": "important"
55
56
  },
56
57
  "updateBuildableProjectDepsInPackageJson": {
57
58
  "type": "boolean",
@@ -18,7 +18,8 @@
18
18
  },
19
19
  "directory": {
20
20
  "type": "string",
21
- "description": "A directory where the lib is placed."
21
+ "description": "A directory where the lib is placed.",
22
+ "x-priority": "important"
22
23
  },
23
24
  "linter": {
24
25
  "description": "The tool to use for running lint checks.",
@@ -39,12 +40,14 @@
39
40
  "skipFormat": {
40
41
  "description": "Skip formatting files.",
41
42
  "type": "boolean",
42
- "default": false
43
+ "default": false,
44
+ "x-priority": "internal"
43
45
  },
44
46
  "skipTsConfig": {
45
47
  "type": "boolean",
46
48
  "description": "Do not update tsconfig.json for development experience.",
47
- "default": false
49
+ "default": false,
50
+ "x-priority": "internal"
48
51
  },
49
52
  "includeBabelRc": {
50
53
  "type": "boolean",
@@ -79,12 +82,14 @@
79
82
  "publishable": {
80
83
  "type": "boolean",
81
84
  "default": false,
82
- "description": "Generate a publishable library."
85
+ "description": "Generate a publishable library.",
86
+ "x-priority": "important"
83
87
  },
84
88
  "buildable": {
85
89
  "type": "boolean",
86
90
  "default": true,
87
- "description": "Generate a buildable library."
91
+ "description": "Generate a buildable library.",
92
+ "x-priority": "important"
88
93
  },
89
94
  "setParserOptionsProject": {
90
95
  "type": "boolean",
@@ -95,19 +100,22 @@
95
100
  "type": "string",
96
101
  "enum": ["workspace", "project", "npm-scripts"],
97
102
  "default": "project",
98
- "description": "Determines whether the project's executors should be configured in `workspace.json`, `project.json` or as npm scripts."
103
+ "description": "Determines whether the project's executors should be configured in `workspace.json`, `project.json` or as npm scripts.",
104
+ "x-priority": "internal"
99
105
  },
100
106
  "compiler": {
101
107
  "type": "string",
102
108
  "enum": ["tsc", "swc"],
103
109
  "default": "tsc",
104
- "description": "The compiler used by the build and test targets"
110
+ "description": "The compiler used by the build and test targets",
111
+ "x-priority": "important"
105
112
  },
106
113
  "bundler": {
107
114
  "description": "The bundler to use.",
108
115
  "type": "string",
109
116
  "enum": ["none", "esbuild", "rollup", "vite", "webpack"],
110
- "default": "none"
117
+ "default": "none",
118
+ "x-priority": "important"
111
119
  },
112
120
  "skipTypeCheck": {
113
121
  "type": "boolean",