This commit is contained in:
Michael Murtaugh
2019-05-27 16:05:50 +02:00
commit b027ca341a
29 changed files with 17864 additions and 0 deletions

29
rollup.config.js Normal file
View File

@@ -0,0 +1,29 @@
// rollup.config.js
// https://github.com/rollup/rollup-plugin-commonjs
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
export default [{
input: 'src/wikimap.js',
output: {
file: 'dist/wikimap.js',
format: 'iife',
name: 'wikimap'
},
plugins: [
resolve(),
commonjs()
]
},{
input: 'src/wikimaptotal.js',
output: {
file: 'dist/wikimaptotal.js',
format: 'iife',
name: 'wikimap'
},
plugins: [
resolve(),
commonjs()
]
}
];