/** * 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)
aboutsummaryrefslogtreecommitdiffstats
path: root/devel/florist-gpl
Commit message (Expand)AuthorAgeFilesLines
* Update to 2017.vanilla2018-02-042-4/+4
* Return ports maintained by John Marino to the pool, he is no longer interested.rene2017-04-221-1/+1
* Return the ports mistakenly reset to ports@ in r433856 to John Marino.rene2017-02-161-1/+1
* Return ports maintained by John Marino to the pool, see r433827 for detailsrene2017-02-111-1/+1
* devel/florist-gpl: upgrade version 2015 => 2016marino2016-06-103-6/+6
* Change Ada Framework foundation from gcc5-aux to gcc6-auxmarino2016-04-301-0/+1
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.mat2016-04-011-1/+1
* devel/florist-gpl: Upgrade version 2014 => 2015marino2015-06-1712-77/+45
* marino 12 devel ports: Remove @dirrm, tend install commands, plusmarino2014-10-161-3/+0
* devel/florist-gpl: Upgrade version 2012 => 2014marino2014-05-1510-113/+20
* devel/florist-gpl: Don't strip static librarymarino2014-04-262-3/+3
* devel/florist-gpl: Fix code style before gcc49 comes inmarino2014-03-121-0/+96
* devel/florist-gpl: Convert to stagingmarino2013-11-101-6/+0
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* devel/florist: Update maintainer to marino@marino2013-08-231-2/+2
* florist-gpl, zip-ada: Add trailing slash for WWW field.marino2013-08-231-1/+1
* Resurrect devel/florist-gpl and update from version 2006 to 2012marino2013-08-2312-0/+407
* 2010-01-08 audio/dino: has been broken for 7 monthsmiwi2010-01-216-309/+0
* This port has been broken for 3+ months, thuspav2009-12-081-0/+2
* Mark BROKEN. does not builderwin2009-09-011-0/+2
* fix index, fix check-for-distfiles-targetedwin2007-10-241-12/+13
* Include bsd.port.pre.mk before checking variables.edwin2007-10-241-1/+3