mirror of https://github.com/lukechilds/rollup.git
Oskar Segersvärd
9 years ago
16 changed files with 88 additions and 0 deletions
@ -0,0 +1,6 @@ |
|||||
|
module.exports = { |
||||
|
description: 're-exporting a default export', |
||||
|
options: { |
||||
|
moduleName: 'myBundle' |
||||
|
} |
||||
|
}; |
@ -0,0 +1,7 @@ |
|||||
|
define(function () { 'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
return bar; |
||||
|
|
||||
|
}); |
@ -0,0 +1,5 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
module.exports = bar; |
@ -0,0 +1,3 @@ |
|||||
|
var bar = 1; |
||||
|
|
||||
|
export default bar; |
@ -0,0 +1,7 @@ |
|||||
|
var myBundle = (function () { 'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
return bar; |
||||
|
|
||||
|
})(); |
@ -0,0 +1,11 @@ |
|||||
|
(function (global, factory) { |
||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : |
||||
|
typeof define === 'function' && define.amd ? define(factory) : |
||||
|
global.myBundle = factory(); |
||||
|
}(this, function () { 'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
return bar; |
||||
|
|
||||
|
})); |
@ -0,0 +1,3 @@ |
|||||
|
var bar = 1; |
||||
|
|
||||
|
export default bar; |
@ -0,0 +1 @@ |
|||||
|
export { default as default } from './bar.js'; |
@ -0,0 +1,6 @@ |
|||||
|
module.exports = { |
||||
|
description: 're-exporting a default export', |
||||
|
options: { |
||||
|
moduleName: 'myBundle' |
||||
|
} |
||||
|
}; |
@ -0,0 +1,7 @@ |
|||||
|
define(function () { 'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
return bar; |
||||
|
|
||||
|
}); |
@ -0,0 +1,5 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
module.exports = bar; |
@ -0,0 +1,3 @@ |
|||||
|
var bar = 1; |
||||
|
|
||||
|
export default bar; |
@ -0,0 +1,7 @@ |
|||||
|
var myBundle = (function () { 'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
return bar; |
||||
|
|
||||
|
})(); |
@ -0,0 +1,11 @@ |
|||||
|
(function (global, factory) { |
||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() : |
||||
|
typeof define === 'function' && define.amd ? define(factory) : |
||||
|
global.myBundle = factory(); |
||||
|
}(this, function () { 'use strict'; |
||||
|
|
||||
|
var bar = 1; |
||||
|
|
||||
|
return bar; |
||||
|
|
||||
|
})); |
@ -0,0 +1,3 @@ |
|||||
|
var bar = 1; |
||||
|
|
||||
|
export default bar; |
@ -0,0 +1,3 @@ |
|||||
|
import foo from './bar.js'; |
||||
|
|
||||
|
export default foo; |
Loading…
Reference in new issue