mirror of https://github.com/lukechilds/rollup.git
Bogdan Chadkin
9 years ago
8 changed files with 71 additions and 0 deletions
@ -0,0 +1,15 @@ |
|||||
|
var path = require('path'); |
||||
|
|
||||
|
module.exports = { |
||||
|
solo: true, |
||||
|
description: 'normalizes absolute ids', |
||||
|
options: { |
||||
|
plugins: [{ |
||||
|
transform: function (code, id) { |
||||
|
if (/main/.test(id)) { |
||||
|
return code.replace('"./a.js"', JSON.stringify(path.resolve(__dirname, 'a.js'))); |
||||
|
} |
||||
|
} |
||||
|
}] |
||||
|
} |
||||
|
}; |
@ -0,0 +1,10 @@ |
|||||
|
define(function () { 'use strict'; |
||||
|
|
||||
|
var a = () => { |
||||
|
console.log('props'); |
||||
|
}; |
||||
|
|
||||
|
a(); |
||||
|
a(); |
||||
|
|
||||
|
}); |
@ -0,0 +1,8 @@ |
|||||
|
'use strict'; |
||||
|
|
||||
|
var a = () => { |
||||
|
console.log('props'); |
||||
|
}; |
||||
|
|
||||
|
a(); |
||||
|
a(); |
@ -0,0 +1,6 @@ |
|||||
|
var a = () => { |
||||
|
console.log('props'); |
||||
|
}; |
||||
|
|
||||
|
a(); |
||||
|
a(); |
@ -0,0 +1,11 @@ |
|||||
|
(function () { |
||||
|
'use strict'; |
||||
|
|
||||
|
var a = () => { |
||||
|
console.log('props'); |
||||
|
}; |
||||
|
|
||||
|
a(); |
||||
|
a(); |
||||
|
|
||||
|
}()); |
@ -0,0 +1,14 @@ |
|||||
|
(function (global, factory) { |
||||
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
||||
|
typeof define === 'function' && define.amd ? define(factory) : |
||||
|
(factory()); |
||||
|
}(this, function () { 'use strict'; |
||||
|
|
||||
|
var a = () => { |
||||
|
console.log('props'); |
||||
|
}; |
||||
|
|
||||
|
a(); |
||||
|
a(); |
||||
|
|
||||
|
})); |
@ -0,0 +1,3 @@ |
|||||
|
export var a = () => { |
||||
|
console.log('props'); |
||||
|
}; |
@ -0,0 +1,4 @@ |
|||||
|
import { a } from "./a.js"; |
||||
|
import { a as b } from "./a.js"; |
||||
|
a(); |
||||
|
b(); |
Loading…
Reference in new issue