mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
10 years ago
203 changed files with 169 additions and 72 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'single module, no imports or exports' |
|||
}; |
@ -0,0 +1,5 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
console.log( 'this is it' ); |
|||
|
|||
}); |
@ -0,0 +1,3 @@ |
|||
'use strict'; |
|||
|
|||
console.log( 'this is it' ); |
@ -0,0 +1 @@ |
|||
console.log( 'this is it' ); |
@ -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'; |
|||
|
|||
console.log( 'this is it' ); |
|||
|
|||
})); |
@ -0,0 +1 @@ |
|||
console.log( 'this is it' ); |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue