@nrwl/js 15.6.3 → 15.7.0-alpha.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/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
|
-
|
|
6
|
+
|
|
7
7
|
|
|
8
8
|
**Note:** Version bump only for package @nrwl/js
|
package/README.md
CHANGED
|
@@ -55,7 +55,7 @@ npx nx@latest init
|
|
|
55
55
|
|
|
56
56
|
- [Nx.Dev: Documentation, Guides, Tutorials](https://nx.dev)
|
|
57
57
|
- [Intro to Nx](https://nx.dev/getting-started/intro)
|
|
58
|
-
- [Official Nx YouTube Channel](https://www.youtube.com
|
|
58
|
+
- [Official Nx YouTube Channel](https://www.youtube.com/@NxDevtools)
|
|
59
59
|
- [Blog Posts About Nx](https://blog.nrwl.io/nx/home)
|
|
60
60
|
|
|
61
61
|
<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/js",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.7.0-alpha.1",
|
|
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.
|
|
43
|
-
"@nrwl/linter": "15.
|
|
44
|
-
"@nrwl/workspace": "15.
|
|
42
|
+
"@nrwl/devkit": "15.7.0-alpha.1",
|
|
43
|
+
"@nrwl/linter": "15.7.0-alpha.1",
|
|
44
|
+
"@nrwl/workspace": "15.7.0-alpha.1",
|
|
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": "
|
|
62
|
+
"gitHead": "42d38047ff854942cc8832dda035e5cc7d0a2dc0"
|
|
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",
|
|
@@ -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",
|