@nx/js 16.7.1 → 16.7.3
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.7.
|
|
3
|
+
"version": "16.7.3",
|
|
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.22.9",
|
|
40
40
|
"@babel/preset-typescript": "^7.22.5",
|
|
41
41
|
"@babel/runtime": "^7.22.6",
|
|
42
|
-
"@nrwl/js": "16.7.
|
|
43
|
-
"@nx/devkit": "16.7.
|
|
44
|
-
"@nx/workspace": "16.7.
|
|
42
|
+
"@nrwl/js": "16.7.3",
|
|
43
|
+
"@nx/devkit": "16.7.3",
|
|
44
|
+
"@nx/workspace": "16.7.3",
|
|
45
45
|
"@phenomnomnominal/tsquery": "~5.0.1",
|
|
46
46
|
"babel-plugin-const-enum": "^1.0.1",
|
|
47
47
|
"babel-plugin-macros": "^2.8.0",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"access": "public"
|
|
72
72
|
},
|
|
73
73
|
"type": "commonjs",
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "6ff5487c5f4ed9ed008df2af39e37d98fd289259"
|
|
75
75
|
}
|
|
@@ -502,4 +502,4 @@ function determineEntryFields(options) {
|
|
|
502
502
|
}
|
|
503
503
|
}
|
|
504
504
|
exports.default = libraryGenerator;
|
|
505
|
-
exports.librarySchematic = (0, devkit_1.convertNxGenerator)(
|
|
505
|
+
exports.librarySchematic = (0, devkit_1.convertNxGenerator)(libraryGenerator);
|
|
@@ -10,7 +10,7 @@ const print_diagnostics_1 = require("../typescript/print-diagnostics");
|
|
|
10
10
|
const run_type_check_1 = require("../typescript/run-type-check");
|
|
11
11
|
function getSwcCmd({ swcrcPath, srcPath, destPath }, watch = false) {
|
|
12
12
|
const swcCLI = require.resolve('@swc/cli/bin/swc.js');
|
|
13
|
-
let swcCmd =
|
|
13
|
+
let swcCmd = `node ${swcCLI} ${
|
|
14
14
|
// TODO(jack): clean this up when we remove inline module support
|
|
15
15
|
// Handle root project
|
|
16
16
|
srcPath === '.' ? 'src' : srcPath} -d ${srcPath === '.' ? `${destPath}/src` : destPath} --config-file=${swcrcPath}`;
|