Skip to content

Commit

Permalink
fix(release): should fix lock file issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Oct 2, 2024
1 parent a8330ef commit d4dcb32
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/nx+19.8.3.patch
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,16 @@ index 2ace40e..c415390 100644
+ // return JSON.stringify(input, null, options?.spaces ?? 2);
+ return JSON.stringify(input, null, options?.indent ?? 2);
}
diff --git a/node_modules/nx/src/utils/package-manager.js b/node_modules/nx/src/utils/package-manager.js
index a8ef2b8..f29027d 100644
--- a/node_modules/nx/src/utils/package-manager.js
+++ b/node_modules/nx/src/utils/package-manager.js
@@ -132,7 +132,7 @@ function getPackageManagerCommand(packageManager = detectPackageManager(), root
},
npm: () => {
// TODO: Remove this
- process.env.npm_config_legacy_peer_deps ??= 'true';
+ // process.env.npm_config_legacy_peer_deps ??= 'true';
return {
install: 'npm install',
ciInstall: 'npm ci --legacy-peer-deps',

0 comments on commit d4dcb32

Please sign in to comment.