mirror of https://github.com/webpack/webpack.git
13 lines
234 B
JavaScript
13 lines
234 B
JavaScript
|
import { valueB } from "./module-b.js";
|
||
|
import { externalValue } from "external-module-a";
|
||
|
|
||
|
export const valueA = "module-A";
|
||
|
|
||
|
export function getFromExternalA() {
|
||
|
return externalValue;
|
||
|
}
|
||
|
|
||
|
export function callB() {
|
||
|
return valueB;
|
||
|
}
|