/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/conditional-runtime/accept-conditional/shared.js
12 строк
162 B
Tobias Koppers
merge multiple import statements with different conditions correctly
27 окт 2020, 08:48
27 окт 2020, 08:48
19f5153
Код
Авторство
О чём код?
import x from "./dep1"; import y from "./dep2"; export function f() { return x; } export function g() { return y; } module.hot.accept(["./dep1", "./dep2"]);