mirror of https://github.com/lukechilds/rollup.git
Brian Donovan
10 years ago
6 changed files with 20 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'top level side effects are preserved' |
|||
}; |
@ -0,0 +1 @@ |
|||
export default function asap() {} |
@ -0,0 +1 @@ |
|||
export const config = {}; |
@ -0,0 +1,5 @@ |
|||
import { config } from './config'; |
|||
|
|||
export default function defer() { |
|||
config.async(); |
|||
} |
@ -0,0 +1,3 @@ |
|||
import { defer } from './rsvp'; |
|||
|
|||
defer(); |
@ -0,0 +1,7 @@ |
|||
import { config } from './config'; |
|||
import asap from './asap'; |
|||
import defer from './defer'; |
|||
|
|||
config.async = asap; |
|||
|
|||
export { defer }; |
Loading…
Reference in new issue