Release v2.0.0

This commit is contained in:
Basile Bruneau
2021-04-16 18:51:42 +02:00
parent 84dd361945
commit a6873175d3
8 changed files with 2494 additions and 36 deletions
+16
View File
@@ -0,0 +1,16 @@
const path = require('path');
module.exports = {
entry: './src/index.js',
mode: 'production',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'dotted-map.js',
library: {
name: 'dotted-map',
type: 'umd',
},
globalObject: 'this',
clean: true,
},
};