@nx/js 16.4.0-beta.3 → 16.4.0-beta.4
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": "@nx/js",
|
|
3
|
-
"version": "16.4.0-beta.
|
|
3
|
+
"version": "16.4.0-beta.4",
|
|
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/js": "16.4.0-beta.
|
|
43
|
-
"@nx/devkit": "16.4.0-beta.
|
|
44
|
-
"@nx/workspace": "16.4.0-beta.
|
|
42
|
+
"@nrwl/js": "16.4.0-beta.4",
|
|
43
|
+
"@nx/devkit": "16.4.0-beta.4",
|
|
44
|
+
"@nx/workspace": "16.4.0-beta.4",
|
|
45
45
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
46
46
|
"babel-plugin-const-enum": "^1.0.1",
|
|
47
47
|
"babel-plugin-macros": "^2.8.0",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"access": "public"
|
|
70
70
|
},
|
|
71
71
|
"types": "./src/index.d.ts",
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "82c14a87a70ab507d5d2eed1522948fcc326adf4"
|
|
73
73
|
}
|
|
@@ -39,7 +39,7 @@ function verdaccioExecutor(options, context) {
|
|
|
39
39
|
process.on('SIGHUP', processExitListener);
|
|
40
40
|
try {
|
|
41
41
|
const port = yield detectPort(options.port);
|
|
42
|
-
if (port
|
|
42
|
+
if (port !== options.port) {
|
|
43
43
|
devkit_1.logger.info(`Port ${options.port} was occupied. Using port ${port}.`);
|
|
44
44
|
options.port = port;
|
|
45
45
|
}
|
|
@@ -59,10 +59,6 @@
|
|
|
59
59
|
"description": "The test environment to use if unitTestRunner is set to jest.",
|
|
60
60
|
"default": "jsdom"
|
|
61
61
|
},
|
|
62
|
-
"importPath": {
|
|
63
|
-
"type": "string",
|
|
64
|
-
"description": "The library name used to import it, like @myorg/my-awesome-lib."
|
|
65
|
-
},
|
|
66
62
|
"pascalCaseFiles": {
|
|
67
63
|
"type": "boolean",
|
|
68
64
|
"description": "Use pascal case file names.",
|
|
@@ -85,6 +81,11 @@
|
|
|
85
81
|
"description": "Generate a publishable library.",
|
|
86
82
|
"x-priority": "important"
|
|
87
83
|
},
|
|
84
|
+
"importPath": {
|
|
85
|
+
"type": "string",
|
|
86
|
+
"description": "The library name used to import it, like @myorg/my-awesome-lib. Required for publishable library.",
|
|
87
|
+
"x-priority": "important"
|
|
88
|
+
},
|
|
88
89
|
"buildable": {
|
|
89
90
|
"type": "boolean",
|
|
90
91
|
"default": true,
|