Merge pull request #3 from 0xProject/webpack

Webpack && npm scripts && ignore files
This commit is contained in:
Leonid 2017-05-24 12:40:51 +02:00 committed by GitHub
commit 302a497327
3 changed files with 62 additions and 3 deletions

7
.npmignore Normal file
View File

@ -0,0 +1,7 @@
.*
tsconfig.json
tslint.json
webpack.config.js
yarn.lock
src

View File

@ -9,15 +9,27 @@
"tokens", "tokens",
"exchange" "exchange"
], ],
"scripts": {
"clean": "shx rm -rf _bundles lib lib-esm",
"build:bundle": "webpack",
"build:commonjs": "tsc",
"build:es6": "tsc -m es6 --outDir lib-esm",
"build": "npm run clean && run-p build:*"
},
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/0xProject/0x.js" "url": "https://github.com/0xProject/0x.js"
}, },
"license": "Apache 2.0", "license": "Apache-2.0",
"engines": { "engines": {
"node": ">=6.0.0" "node": ">=6.0.0"
}, },
"dependencies": { "devDependencies": {
"tslint-config-0xproject": "^0.0.0" "awesome-typescript-loader": "^3.1.3",
"npm-run-all": "^4.0.2",
"shx": "^0.2.2",
"tslint-config-0xproject": "^0.0.0",
"typescript": "^2.3.3",
"webpack": "^2.6.0"
} }
} }

40
webpack.config.js Normal file
View File

@ -0,0 +1,40 @@
/**
* This is to generate the umd bundle only
*/
const webpack = require('webpack');
const path = require('path');
module.exports = {
entry: {
'0x': './src/ts/0x.js.ts',
'0x.min': './src/ts/0x.js.ts'
},
output: {
path: path.resolve(__dirname, '_bundles'),
filename: '[name].js',
libraryTarget: 'umd',
library: 'ZeroEx',
umdNamedDefine: true,
},
resolve: {
extensions: ['.ts', '.js'],
},
devtool: 'source-map',
plugins: [
new webpack.optimize.UglifyJsPlugin({
minimize: true,
sourceMap: true,
include: /\.min\.js$/,
}),
],
module: {
loaders: [{
test: /\.ts$/,
loader: 'awesome-typescript-loader',
exclude: /node_modules/,
query: {
declaration: false,
},
}],
},
};