mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
committed by
GitHub
5 changed files with 13 additions and 2 deletions
@ -0,0 +1,9 @@ |
|||
const assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'adds a newline after the sourceMappingURL comment (#756)', |
|||
command: 'rollup -i main.js -m inline', |
|||
result: code => { |
|||
assert.equal( code.slice( -1 ), '\n' ); |
|||
} |
|||
}; |
@ -0,0 +1 @@ |
|||
console.log( 42 ); |
Loading…
Reference in new issue