monorepo-next 9.4.13 → 10.0.1

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/release.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monorepo-next",
3
- "version": "9.4.13",
3
+ "version": "10.0.1",
4
4
  "description": "Detach monorepo packages from normal linking",
5
5
  "bin": {
6
6
  "next": "bin/next.js"
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "homepage": "https://github.com/CrowdStrike/monorepo-next#readme",
57
57
  "engines": {
58
- "node": ">=14.15"
58
+ "node": ">=16.13"
59
59
  },
60
60
  "dependencies": {
61
61
  "conventional-changelog": "3.1.25",
@@ -87,7 +87,7 @@
87
87
  "eslint-plugin-node": "^11.0.0",
88
88
  "fixturify": "^3.0.0",
89
89
  "fs-extra": "^11.1.1",
90
- "git-fixtures": "^5.0.0",
90
+ "git-fixtures": "^7.0.0",
91
91
  "mocha": "^10.0.0",
92
92
  "mocha-helpers": "^7.0.0",
93
93
  "remark-cli": "^11.0.0",
@@ -95,7 +95,7 @@
95
95
  "renovate-config-standard": "^2.0.0",
96
96
  "sinon": "^15.0.0",
97
97
  "sinon-chai": "^3.5.0",
98
- "standard-node-template": "3.2.1",
98
+ "standard-node-template": "4.0.1",
99
99
  "yargs-help-output": "^3.0.0"
100
100
  }
101
101
  }
package/src/release.js CHANGED
@@ -176,7 +176,7 @@ async function release({
176
176
  let commitMessage = `chore(release): ${tags.join()}`;
177
177
 
178
178
  if (!dryRun) {
179
- await execa('git', ['add', '-A'], { cwd: workspaceCwd });
179
+ await execa('git', ['add', '-A'], { cwd: workspaceCwd, silent: true });
180
180
  }
181
181
 
182
182
  await preCommitCallback({ dryRun });
@@ -221,10 +221,10 @@ async function release({
221
221
  } catch (err) {
222
222
  if (!dryRun) {
223
223
  if (shouldCleanUpAfterFailedPush) {
224
- await execa('git', ['tag', '-d', ...tags], { cwd: workspaceCwd });
224
+ await execa('git', ['tag', '-d', ...tags], { cwd: workspaceCwd, silent });
225
225
  }
226
226
 
227
- await execa('git', ['reset', '--hard', previousCommit], { cwd: workspaceCwd });
227
+ await execa('git', ['reset', '--hard', previousCommit], { cwd: workspaceCwd, silent });
228
228
  }
229
229
 
230
230
  throw err;