/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/esm-output/split-chunks/common/shared.js
16 строк
288 B
Natsu Xiao
feat: HMR support for ESM
23 июн 2025, 15:22
Не верифицирован
23 июн 2025, 15:22
09fda87
Код
Авторство
О чём код?
export function commonFunction(input) { return `Common function processed: ${input}`; } export const commonData = { shared: true }; --- export function commonFunction(input) { return `Updated common function: ${input}`; } export const commonData = { shared: true, updated: true };