mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
committed by
GitHub
7 changed files with 30 additions and 3 deletions
@ -0,0 +1,5 @@ |
|||
module.exports = { |
|||
description: 'does not print warnings with --silent', |
|||
command: 'rollup -i main.js -f cjs --silent', |
|||
stderr: `` |
|||
}; |
@ -0,0 +1,5 @@ |
|||
'use strict'; |
|||
|
|||
var foo = 42; |
|||
|
|||
assert.equal( foo, 42 ); |
@ -0,0 +1 @@ |
|||
export var foo = 42; |
@ -0,0 +1,3 @@ |
|||
import { foo, bar } from './foo.js'; |
|||
|
|||
assert.equal( foo, 42 ); |
Loading…
Reference in new issue