forked from ds300/patch-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrebase.ts
224 lines (200 loc) Β· 5.58 KB
/
rebase.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
import chalk from "chalk"
import { join, resolve } from "path"
import { applyPatch } from "./applyPatches"
import { hashFile } from "./hash"
import { PatchedPackageDetails } from "./PackageDetails"
import { getGroupedPatches } from "./patchFs"
import {
getPatchApplicationState,
savePatchApplicationState,
verifyAppliedPatches,
} from "./stateFile"
export function rebase({
appPath,
patchDir,
packagePathSpecifier,
targetPatch,
}: {
appPath: string
patchDir: string
packagePathSpecifier: string
targetPatch: string
}): void {
const patchesDirectory = join(appPath, patchDir)
const groupedPatches = getGroupedPatches(patchesDirectory)
if (groupedPatches.numPatchFiles === 0) {
console.log(chalk.blueBright("No patch files found"))
process.exit(1)
}
const packagePatches =
groupedPatches.pathSpecifierToPatchFiles[packagePathSpecifier]
if (!packagePatches) {
console.log(
chalk.blueBright("No patch files found for package"),
packagePathSpecifier,
)
process.exit(1)
}
const state = getPatchApplicationState(packagePatches[0])
if (!state) {
console.log(
chalk.blueBright("No patch state found"),
"Did you forget to run",
chalk.bold("patch-package"),
"(without arguments) first?",
)
process.exit(1)
}
if (state.isRebasing) {
console.log(
chalk.blueBright("Already rebasing"),
"Make changes to the files in",
chalk.bold(packagePatches[0].path),
"and then run `patch-package",
packagePathSpecifier,
"--continue` to",
packagePatches.length === state.patches.length
? "append a patch file"
: `update the ${
packagePatches[packagePatches.length - 1].patchFilename
} file`,
)
console.log(
`π‘ To remove a broken patch file, delete it and reinstall node_modules`,
)
process.exit(1)
}
if (state.patches.length !== packagePatches.length) {
console.log(
chalk.blueBright("Some patches have not been applied."),
"Reinstall node_modules and try again.",
)
}
// check hashes
verifyAppliedPatches({ appPath, patchDir, state })
if (targetPatch === "0") {
// unapply all
unApplyPatches({
patches: packagePatches,
appPath,
patchDir,
})
savePatchApplicationState({
packageDetails: packagePatches[0],
isRebasing: true,
patches: [],
})
console.log(`
Make any changes you need inside ${chalk.bold(packagePatches[0].path)}
When you are done, run
${chalk.bold(
`patch-package ${packagePathSpecifier} --append 'MyChangeDescription'`,
)}
to insert a new patch file.
`)
return
}
// find target patch
const target = packagePatches.find((p) => {
if (p.patchFilename === targetPatch) {
return true
}
if (
resolve(process.cwd(), targetPatch) ===
join(patchesDirectory, p.patchFilename)
) {
return true
}
if (targetPatch === p.sequenceName) {
return true
}
const n = Number(targetPatch.replace(/^0+/g, ""))
if (!isNaN(n) && n === p.sequenceNumber) {
return true
}
return false
})
if (!target) {
console.log(
chalk.red("Could not find target patch file"),
chalk.bold(targetPatch),
)
console.log()
console.log("The list of available patch files is:")
packagePatches.forEach((p) => {
console.log(` - ${p.patchFilename}`)
})
process.exit(1)
}
const currentHash = hashFile(join(patchesDirectory, target.patchFilename))
const prevApplication = state.patches.find(
(p) => p.patchContentHash === currentHash,
)
if (!prevApplication) {
console.log(
chalk.red("Could not find previous application of patch file"),
chalk.bold(target.patchFilename),
)
console.log()
console.log("You should reinstall node_modules and try again.")
process.exit(1)
}
// ok, we are good to start undoing all the patches that were applied up to but not including the target patch
const targetIdx = state.patches.indexOf(prevApplication)
unApplyPatches({
patches: packagePatches.slice(targetIdx + 1),
appPath,
patchDir,
})
savePatchApplicationState({
packageDetails: packagePatches[0],
isRebasing: true,
patches: packagePatches.slice(0, targetIdx + 1).map((p) => ({
patchFilename: p.patchFilename,
patchContentHash: hashFile(join(patchesDirectory, p.patchFilename)),
didApply: true,
})),
})
console.log(`
Make any changes you need inside ${chalk.bold(packagePatches[0].path)}
When you are done, do one of the following:
To update ${chalk.bold(packagePatches[targetIdx].patchFilename)} run
${chalk.bold(`patch-package ${packagePathSpecifier}`)}
To create a new patch file after ${chalk.bold(
packagePatches[targetIdx].patchFilename,
)} run
${chalk.bold(
`patch-package ${packagePathSpecifier} --append 'MyChangeDescription'`,
)}
`)
}
function unApplyPatches({
patches,
appPath,
patchDir,
}: {
patches: PatchedPackageDetails[]
appPath: string
patchDir: string
}) {
for (const patch of patches.slice().reverse()) {
if (
!applyPatch({
patchFilePath: join(appPath, patchDir, patch.patchFilename) as string,
reverse: true,
patchDetails: patch,
patchDir,
cwd: process.cwd(),
bestEffort: false,
})
) {
console.log(
chalk.red("Failed to un-apply patch file"),
chalk.bold(patch.patchFilename),
"Try completely reinstalling node_modules.",
)
process.exit(1)
}
console.log(chalk.cyan.bold("Un-applied"), patch.patchFilename)
}
}