mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
7 changed files with 26 additions and 14 deletions
@ -1,10 +1,11 @@ |
|||
import factory from 'factory'; |
|||
import { bar, foo } from 'baz'; |
|||
import { port } from 'shipping-port'; |
|||
import * as containers from 'shipping-port'; |
|||
import alphabet, { a } from 'alphabet'; |
|||
|
|||
factory( null ); |
|||
foo( bar ); |
|||
foo( bar, port ); |
|||
containers.forEach( console.log, console ); |
|||
console.log( a ); |
|||
console.log( alphabet.length ); |
|||
|
@ -1,10 +1,11 @@ |
|||
import factory from 'factory'; |
|||
import { foo, bar } from 'baz'; |
|||
import * as containers from 'shipping-port'; |
|||
import { port } from 'shipping-port'; |
|||
import alphabet, { a, b } from 'alphabet'; |
|||
|
|||
factory( null ); |
|||
foo( bar ); |
|||
foo( bar, port ); |
|||
containers.forEach( console.log, console ); |
|||
console.log( a ); |
|||
console.log( alphabet.length ); |
|||
|
Loading…
Reference in new issue