/**
* This is to generate the umd bundle only
*/
const _ = require('lodash');
const webpack = require('webpack');
const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const path = require('path');
const production = process.env.NODE_ENV === 'production';
let entry = {
index: './src/index.ts',
};
if (production) {
entry = _.assign({}, entry, { 'index.min': './src/index.ts' });
}
module.exports = {
entry,
output: {
path: path.resolve(__dirname, '_bundles'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'ZeroEx',
umdNamedDefine: true,
},
resolve: {
extensions: ['.ts', '.js', '.json'],
},
devtool: 'source-map',
plugins: [
// TODO: Revert to webpack bundled version with webpack v4.
// The v3 series bundled version does not support ES6 and
// fails to build.
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
mangle: {
reserved: ['BigNumber'],
},
},
}),
],
module: {
rules: [
{
test: /\.ts$/,
use: [
{
loader: 'awesome-typescript-loader',
query: {
declaration: false,
},
},
],
exclude: /node_modules/,
},
{
test: /\.json$/,
loader: 'json-loader',
},
],
},
};
es/elliptic-6.5.3
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome) | |
| Commit message (Expand) | Author | Age | Files | Lines |
* | Update to 2017. | vanilla | 2018-02-04 | 2 | -4/+4 |
* | Return ports maintained by John Marino to the pool, he is no longer interested. | rene | 2017-04-22 | 1 | -1/+1 |
* | Return the ports mistakenly reset to ports@ in r433856 to John Marino. | rene | 2017-02-16 | 1 | -1/+1 |
* | Return ports maintained by John Marino to the pool, see r433827 for details | rene | 2017-02-11 | 1 | -1/+1 |
* | devel/florist-gpl: upgrade version 2015 => 2016 | marino | 2016-06-10 | 3 | -6/+6 |
* | Change Ada Framework foundation from gcc5-aux to gcc6-aux | marino | 2016-04-30 | 1 | -0/+1 |
* | Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g. | mat | 2016-04-01 | 1 | -1/+1 |
* | devel/florist-gpl: Upgrade version 2014 => 2015 | marino | 2015-06-17 | 12 | -77/+45 |
* | marino 12 devel ports: Remove @dirrm, tend install commands, plus | marino | 2014-10-16 | 1 | -3/+0 |
* | devel/florist-gpl: Upgrade version 2012 => 2014 | marino | 2014-05-15 | 10 | -113/+20 |
* | devel/florist-gpl: Don't strip static library | marino | 2014-04-26 | 2 | -3/+3 |
* | devel/florist-gpl: Fix code style before gcc49 comes in | marino | 2014-03-12 | 1 | -0/+96 |
* | devel/florist-gpl: Convert to staging | marino | 2013-11-10 | 1 | -6/+0 |
* | Add NO_STAGE all over the place in preparation for the staging support (cat: ... | bapt | 2013-09-21 | 1 | -0/+1 |
* | devel/florist: Update maintainer to marino@ | marino | 2013-08-23 | 1 | -2/+2 |
* | florist-gpl, zip-ada: Add trailing slash for WWW field. | marino | 2013-08-23 | 1 | -1/+1 |
* | Resurrect devel/florist-gpl and update from version 2006 to 2012 | marino | 2013-08-23 | 12 | -0/+407 |
* | 2010-01-08 audio/dino: has been broken for 7 months | miwi | 2010-01-21 | 6 | -309/+0 |
* | This port has been broken for 3+ months, thus | pav | 2009-12-08 | 1 | -0/+2 |
* | Mark BROKEN. does not build | erwin | 2009-09-01 | 1 | -0/+2 |
* | fix index, fix check-for-distfiles-target | edwin | 2007-10-24 | 1 | -12/+13 |
* | Include bsd.port.pre.mk before checking variables. | edwin | 2007-10-24 | 1 | -1/+3 |