mirror of https://github.com/lukechilds/rollup.git
8 changed files with 12 additions and 2 deletions
@ -1,4 +1,6 @@ |
|||
const a = 1; |
|||
const b = 2; |
|||
var internal = 42; |
|||
|
|||
export { a, b }; |
|||
export default internal; |
|||
|
@ -1,2 +1,3 @@ |
|||
export const a = 1; |
|||
export const b = 2; |
|||
export default 42; |
|||
|
Loading…
Reference in new issue