UNPKG

coins-logon-widget

Version:

COINS Logon Widget. Injectable utility to manage browser authorization with COINS

23 lines (21 loc) 489 B
var path = require('path'); var webpack = require('webpack'); var pkg = require('./package.json'); module.exports = { node: { fs: 'empty' }, entry: { 'coins-logon-widget': './scripts/coins-logon-widget.js' }, output: { path: path.join(__dirname + '/dist'), filename: '[name].js', library: 'CoinsLogonWidget', libraryTarget: 'umd', umdNamedDefine: true, }, optimization: { minimize: true } };