This commit is contained in:
thewesker
2016-06-18 13:24:12 -04:00
parent 3b5c6ad50a
commit f8c72a5a29
1630 changed files with 164207 additions and 0 deletions

18
node_modules/lowdb/webpack.config.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
var webpack = require('webpack')
var pkg = require('./package.json')
var banner = 'lowdb v' + pkg.version
module.exports = {
output: {
path: './dist',
libraryTarget: 'umd'
},
plugins: [
new webpack.BannerPlugin(banner)
],
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel' }
]
}
}