You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
|
2 months ago
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
Object.defineProperty(exports, "extractModulesFromTurbopackMessage", {
|
||
|
|
enumerable: true,
|
||
|
|
get: function() {
|
||
|
|
return extractModulesFromTurbopackMessage;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
function extractModulesFromTurbopackMessage(data) {
|
||
|
|
const updatedModules = new Set();
|
||
|
|
const updates = Array.isArray(data) ? data : [
|
||
|
|
data
|
||
|
|
];
|
||
|
|
for (const update of updates){
|
||
|
|
// TODO this won't capture changes to CSS since they don't result in a "merged" update
|
||
|
|
if (update.type !== "partial" || update.instruction.type !== "ChunkListUpdate" || update.instruction.merged === undefined) {
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
for (const mergedUpdate of update.instruction.merged){
|
||
|
|
for (const name of Object.keys(mergedUpdate.entries)){
|
||
|
|
const res = /(.*)\s+\[.*/.exec(name);
|
||
|
|
if (res === null) {
|
||
|
|
console.error("[Turbopack HMR] Expected module to match pattern: " + name);
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
updatedModules.add(res[1]);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return [
|
||
|
|
...updatedModules
|
||
|
|
];
|
||
|
|
}
|
||
|
|
|
||
|
|
//# sourceMappingURL=extract-modules-from-turbopack-message.js.map
|