mirror of https://github.com/masayuki0812/c3.git
Ændrew Rininsland
8 years ago
5 changed files with 1892 additions and 8122 deletions
@ -0,0 +1,13 @@ |
|||||||
|
{ |
||||||
|
"presets": [ |
||||||
|
[ |
||||||
|
"es2015", |
||||||
|
{ |
||||||
|
"modules": false |
||||||
|
} |
||||||
|
] |
||||||
|
], |
||||||
|
"plugins": [ |
||||||
|
"external-helpers" |
||||||
|
] |
||||||
|
} |
File diff suppressed because one or more lines are too long
@ -0,0 +1,21 @@ |
|||||||
|
/** |
||||||
|
* Rollup Config |
||||||
|
*/ |
||||||
|
|
||||||
|
import babel from 'rollup-plugin-babel'; |
||||||
|
|
||||||
|
export default { |
||||||
|
entry: 'es6_modules/rollup.entry.js', |
||||||
|
format: 'umd', |
||||||
|
moduleName: 'c3', |
||||||
|
external: ['d3'], |
||||||
|
globals: { |
||||||
|
d3: 'd3', |
||||||
|
}, |
||||||
|
plugins: [ |
||||||
|
babel({ |
||||||
|
exclude: 'node_modules/**' |
||||||
|
}) |
||||||
|
], |
||||||
|
dest: 'c3.js' |
||||||
|
}; |
Loading…
Reference in new issue