We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c26a1ae commit 984a6c3Copy full SHA for 984a6c3
src/makePatch.ts
@@ -93,7 +93,6 @@ export function makePatch({
93
}
94
95
// TODO: verify applied patch hashes
96
- // TODO: handle empty diffs while rebasing
97
// TODO: handle case where rebase appending and the name is the same as the next one in the sequence
98
if (
99
mode.type === "overwrite_last" &&
@@ -323,6 +322,11 @@ export function makePatch({
323
322
`⁉️ Not creating patch file for package '${packagePathSpecifier}'`,
324
)
325
console.log(`⁉️ There don't appear to be any changes.`)
+ if (isRebasing && mode.type === "overwrite_last") {
326
+ console.log(
327
+ "\n💡 To remove a patch file, delete it and then reinstall node_modules from scratch.",
328
+ )
329
+ }
330
process.exit(1)
331
return
332
0 commit comments