mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 18:00:00 +00:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
import buble from 'rollup-plugin-buble';
|
|
|
|
export default {
|
|
entry: 'src/walk/index.js',
|
|
moduleName: 'acorn.walk',
|
|
plugins: [ buble() ],
|
|
targets: [
|
|
{ dest: 'dist/walk.js', format: 'umd' },
|
|
{ dest: 'dist/walk.es.js', format: 'es' }
|
|
]
|
|
};
|