mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
10 changed files with 22 additions and 2 deletions
@ -0,0 +1,6 @@ |
|||
module.exports = { |
|||
description: 'includes late function declarations with side-effects', |
|||
options: { |
|||
moduleName: 'myBundle' |
|||
} |
|||
}; |
@ -0,0 +1,5 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
|
|||
|
|||
}); |
@ -0,0 +1 @@ |
|||
'use strict'; |
@ -0,0 +1,4 @@ |
|||
var augment; |
|||
augment = x => x.augmented = true; |
|||
|
|||
export { augment }; |
@ -0,0 +1,4 @@ |
|||
import { augment } from './foo.js'; |
|||
|
|||
export default function x () {} |
|||
augment( x ); |
Loading…
Reference in new issue