@nx/devkit 20.0.0 → 20.0.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/devkit",
|
3
|
-
"version": "20.0.
|
3
|
+
"version": "20.0.2",
|
4
4
|
"private": false,
|
5
5
|
"description": "The Nx Devkit is used to customize Nx for different technologies and use cases. It contains many utility functions for reading and writing files, updating configuration, working with Abstract Syntax Trees(ASTs), and more. Learn more about [extending Nx by leveraging the Nx Devkit](https://nx.dev/extending-nx/intro/getting-started) on our docs.",
|
6
6
|
"repository": {
|
@@ -27,7 +27,7 @@ function installPackagesTask(tree, alwaysRun = false, cwd = '', packageManager =
|
|
27
27
|
const execSyncOptions = {
|
28
28
|
cwd: (0, path_1.join)(tree.root, cwd),
|
29
29
|
stdio: process.env.NX_GENERATE_QUIET === 'true' ? 'ignore' : 'inherit',
|
30
|
-
windowsHide:
|
30
|
+
windowsHide: false,
|
31
31
|
};
|
32
32
|
// ensure local registry from process is not interfering with the install
|
33
33
|
// when we start the process from temp folder the local registry would override the custom registry
|
@@ -305,7 +305,7 @@ function ensurePackage(pkgOrTree, requiredVersionOrPackage, maybeRequiredVersion
|
|
305
305
|
(0, child_process_1.execSync)(preInstallCommand, {
|
306
306
|
cwd: tempDir,
|
307
307
|
stdio: isVerbose ? 'inherit' : 'ignore',
|
308
|
-
windowsHide:
|
308
|
+
windowsHide: false,
|
309
309
|
});
|
310
310
|
}
|
311
311
|
let addCommand = (0, devkit_exports_1.getPackageManagerCommand)(packageManager).addDev;
|
@@ -315,7 +315,7 @@ function ensurePackage(pkgOrTree, requiredVersionOrPackage, maybeRequiredVersion
|
|
315
315
|
(0, child_process_1.execSync)(`${addCommand} ${pkg}@${requiredVersion}`, {
|
316
316
|
cwd: tempDir,
|
317
317
|
stdio: isVerbose ? 'inherit' : 'ignore',
|
318
|
-
windowsHide:
|
318
|
+
windowsHide: false,
|
319
319
|
});
|
320
320
|
addToNodePath((0, path_1.join)(devkit_exports_1.workspaceRoot, 'node_modules'));
|
321
321
|
addToNodePath((0, path_1.join)(tempDir, 'node_modules'));
|