/** * This is to generate the umd bundle only */ const lodash = require('lodash'); const webpack = require('webpack'); const path = require('path'); const production = process.env.NODE_ENV === 'production'; let entry = { '0x': './src/0x.js.ts', }; if (production) { entry = _.assign({}, entry, {'0x.min': './src/0x.js.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: [ new webpack.optimize.UglifyJsPlugin({ minimize: true, sourceMap: true, include: /\.min\.js$/, }), ], module: { rules: [ { test: /\.ts$/, use: [ { loader: 'awesome-typescript-loader', query: { declaration: false, }, }, ], exclude: /node_modules/, }, { test: /\.json$/, loader: 'json-loader', }, ], }, }; > FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/cad/spice
Commit message (Expand)AuthorAgeFilesLines
* Allow the spice port to be built without X11 support by definingjdp2004-12-304-5/+31
* The spice maintainers changed the syntax of the "alter" commandjdp2004-10-311-2/+11
* Remove redeclaration, introduced in previous commit, to fix buildarved2004-08-161-9/+5
* - Fix plist and bump PORTREVISIONkrion2004-01-312-1/+3
* SIZEify.trevor2004-01-291-0/+4
* Work around internal compiler error on -current.tg2003-12-081-0/+11
* - Fix installpav2003-11-201-2/+4
* Mark BROKEN (see bento logs). These ports are scheduled for removalkris2003-11-031-4/+2
* Move inclusion of bsd.port.pre.mk past definition of variables.linimon2003-10-292-7/+6
* Mark as broken on 5.x. Distfile dates from 1994, last patch dates fromlinimon2003-10-251-1/+7
* Make portlint(1) happy by changing strip to ${STRIP_CMD}osa2003-09-241-1/+1
* Note Patch level 1 and 2 + update the documentation URL.oliver2003-07-221-6/+4
* The tar.Z file disappeared on the ftp. Use the tar.gz file instead.oliver2003-07-222-2/+1
* 1. REAL cleaning on this port. The files dir is now organized so themaho2003-07-1943-976/+808
* Add Macquarie University patches:maho2003-07-014-7/+3127
* Fix fgets buffer overflowkris2003-06-272-1/+13
* a. Slight enhancementmaho2003-05-055-227/+199
* De-pkg-comment.knu2003-02-212-1/+1
* Bump PORTREVISION to indicate that some bugs have been fixed.joerg2002-08-271-0/+1
* More FreeBSD tweaking in os_bsd.h:joerg2002-08-261-50/+38
* Do not destroy the graph to be printed too early.joerg2002-08-261-0/+27
* When destroying a graph, don't attempt to dereference the contents ofjoerg2002-08-261-0/+17
* PORTDOC Policedwcjr2001-07-081-21/+21
* Default hardcopy prints to Postscript format instead of plot(5) which wejoerg2001-03-061-0/+11
* typo clean up police: \s -> \tlioux2001-02-141-1/+1
* Incorporate some changes from NetBSD, Linux, and the Macquarie University.steve2000-05-2910-4/+382
* update with the new PORTNAME/PORTVERSION variablesmharo2000-04-091-3/+3
* portlintmharo2000-02-031-1/+1
* Add an MLINK from spice.1 to spice3.1, since the actual executable ishoek1999-10-091-0/+1
* Change Id->FreeBSD.obrien1999-08-251-1/+1
* WWW: ----------------------------------------------------------------------hoek1999-05-031-2/+3
* Fix floating point problem and flatten out multi-file patch.chuckr1999-03-096-0/+375
* This apparently isn't BROKEN any more.jseger1999-02-161-3/+1
* spice needs X.asami1998-12-18