mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
9 years ago
5 changed files with 14 additions and 2 deletions
@ -0,0 +1,10 @@ |
|||
const assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
solo: true, |
|||
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