@nx/js 19.4.0 → 19.4.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": "@nx/js",
|
|
3
|
-
"version": "19.4.
|
|
3
|
+
"version": "19.4.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": {
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
"semver": "^7.5.3",
|
|
59
59
|
"source-map-support": "0.5.19",
|
|
60
60
|
"tslib": "^2.3.0",
|
|
61
|
-
"@nx/devkit": "19.4.
|
|
62
|
-
"@nx/workspace": "19.4.
|
|
63
|
-
"@nrwl/js": "19.4.
|
|
61
|
+
"@nx/devkit": "19.4.2",
|
|
62
|
+
"@nx/workspace": "19.4.2",
|
|
63
|
+
"@nrwl/js": "19.4.2"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"verdaccio": "^5.0.4"
|
|
@@ -145,7 +145,7 @@ function getInputs(namedInputs, configFilePath, tsConfig, internalProjectReferen
|
|
|
145
145
|
});
|
|
146
146
|
const inputs = [];
|
|
147
147
|
if (includePaths.size) {
|
|
148
|
-
inputs.push(...Array.from(configFiles).map((p) => pathToInputOrOutput(p, workspaceRoot, projectRoot)), ...Array.from(includePaths).map((p) => (0, devkit_1.joinPathFragments)(
|
|
148
|
+
inputs.push(...Array.from(configFiles).map((p) => pathToInputOrOutput(p, workspaceRoot, projectRoot)), ...Array.from(includePaths).map((p) => pathToInputOrOutput((0, devkit_1.joinPathFragments)(projectRoot, p), workspaceRoot, projectRoot)));
|
|
149
149
|
}
|
|
150
150
|
else {
|
|
151
151
|
// If we couldn't identify any include paths, we default to the default
|
|
@@ -153,7 +153,7 @@ function getInputs(namedInputs, configFilePath, tsConfig, internalProjectReferen
|
|
|
153
153
|
inputs.push('production' in namedInputs ? 'production' : 'default');
|
|
154
154
|
}
|
|
155
155
|
if (excludePaths.size) {
|
|
156
|
-
inputs.push(...Array.from(excludePaths).map((p) => `!${(0, devkit_1.joinPathFragments)(
|
|
156
|
+
inputs.push(...Array.from(excludePaths).map((p) => `!${pathToInputOrOutput((0, devkit_1.joinPathFragments)(projectRoot, p), workspaceRoot, projectRoot)}`));
|
|
157
157
|
}
|
|
158
158
|
if (hasExternalProjectReferences(configFilePath, tsConfig)) {
|
|
159
159
|
// Importing modules from a referenced project will load its output declaration files (d.ts)
|