zippa
Version:
A Generic Zipper Library
20 lines (18 loc) • 398 B
JavaScript
var webpack = require('webpack');
var path = require('path');
module.exports = {
entry: './src/index.js',
output: {
libraryTarget: 'var',
library: 'zippa',
path: './dist',
filename: 'zippa.js',
},
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
}],
},
};