You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
801 B
31 lines
801 B
import babel from 'rollup-plugin-babel'
|
|
import nodeResolve from 'rollup-plugin-node-resolve'
|
|
import commonjs from 'rollup-plugin-commonjs'
|
|
import replace from 'rollup-plugin-replace'
|
|
import path from 'path'
|
|
|
|
export default {
|
|
input: path.resolve(__dirname, './src/index.js'),
|
|
output: {
|
|
file: path.resolve(__dirname, './index.js'),
|
|
format: 'umd'
|
|
},
|
|
name: 'BMapLib.MarkerClusterer',
|
|
plugins: [
|
|
babel({
|
|
exclude: '**',
|
|
presets: ['es2015-rollup']
|
|
}),
|
|
nodeResolve({
|
|
jsnext: true,
|
|
main: true,
|
|
extensions: [ '.js', '.json' ]
|
|
}),
|
|
commonjs({
|
|
include: 'node_modules/**'
|
|
}),
|
|
replace({
|
|
'process.env.NODE_ENV': "'production'"
|
|
})
|
|
]
|
|
} |