mirror of https://github.com/lukechilds/rollup.git
Rich Harris
9 years ago
7 changed files with 21 additions and 2 deletions
@ -0,0 +1,6 @@ |
|||
var assert = require( 'assert' ); |
|||
|
|||
module.exports = { |
|||
description: 'disables indentation with --no-indent', |
|||
command: 'rollup main.js --format umd --no-indent' |
|||
}; |
@ -0,0 +1,9 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
assert.equal( 1 + 1, 2 ); |
|||
|
|||
})); |
@ -0,0 +1 @@ |
|||
assert.equal( 1 + 1, 2 ); |
@ -1,4 +1,4 @@ |
|||
module.exports = { |
|||
description: 'generates UMD export with correct moduleName', |
|||
command: 'rollup main.js --format umd --name myBundle' |
|||
} |
|||
}; |
|||
|
Loading…
Reference in new issue