mirror of https://github.com/lukechilds/rollup.git
Rich-Harris
10 years ago
9 changed files with 63 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||
module.exports = { |
|||
description: 'removes existing sourcemap comments' |
|||
}; |
@ -0,0 +1,9 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
return 42; |
|||
} |
|||
|
|||
console.log( foo() ); |
|||
|
|||
}); |
@ -0,0 +1,7 @@ |
|||
'use strict'; |
|||
|
|||
function foo () { |
|||
return 42; |
|||
} |
|||
|
|||
console.log( foo() ); |
@ -0,0 +1,5 @@ |
|||
function foo () { |
|||
return 42; |
|||
} |
|||
|
|||
console.log( foo() ); |
@ -0,0 +1,9 @@ |
|||
(function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
return 42; |
|||
} |
|||
|
|||
console.log( foo() ); |
|||
|
|||
})(); |
@ -0,0 +1,13 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
factory(); |
|||
}(this, function () { 'use strict'; |
|||
|
|||
function foo () { |
|||
return 42; |
|||
} |
|||
|
|||
console.log( foo() ); |
|||
|
|||
})); |
@ -0,0 +1,5 @@ |
|||
export default function () { |
|||
return 42; |
|||
} |
|||
|
|||
//# sourceMappingURL=foo.js.map
|
@ -0,0 +1,5 @@ |
|||
import foo from './foo'; |
|||
|
|||
console.log( foo() ); |
|||
|
|||
//# sourceMappingURL=main.js.map
|
Loading…
Reference in new issue