2016-10-30 09:55:46 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
const path = require('path');
|
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
2016-11-24 03:11:54 +01:00
|
|
|
const packageJson = require('../package.json');
|
|
|
|
|
|
|
|
const Shared = require('./shared');
|
2016-10-30 09:55:46 +01:00
|
|
|
|
|
|
|
const ENV = process.env.NODE_ENV || 'development';
|
|
|
|
const isProd = ENV === 'production';
|
|
|
|
|
|
|
|
module.exports = {
|
2016-11-24 03:11:54 +01:00
|
|
|
context: path.join(__dirname, '../src'),
|
2016-11-17 15:54:13 +01:00
|
|
|
target: 'node',
|
2016-10-30 09:55:46 +01:00
|
|
|
entry: 'library.js',
|
|
|
|
output: {
|
2016-11-24 03:11:54 +01:00
|
|
|
path: path.join(__dirname, '../.npmjs'),
|
2016-10-30 09:55:46 +01:00
|
|
|
filename: 'library.js',
|
2016-11-17 15:54:13 +01:00
|
|
|
library: 'Parity',
|
|
|
|
libraryTarget: 'umd',
|
|
|
|
umdNamedDefine: true
|
|
|
|
},
|
|
|
|
externals: {
|
|
|
|
'node-fetch': 'node-fetch',
|
|
|
|
'vertx': 'vertx'
|
2016-10-30 09:55:46 +01:00
|
|
|
},
|
|
|
|
module: {
|
2016-11-17 15:54:13 +01:00
|
|
|
noParse: [
|
|
|
|
/babel-polyfill/
|
|
|
|
],
|
2016-11-25 19:32:58 +01:00
|
|
|
rules: [
|
2016-10-30 09:55:46 +01:00
|
|
|
{
|
|
|
|
test: /(\.jsx|\.js)$/,
|
2016-11-25 19:32:58 +01:00
|
|
|
// use: [ 'happypack/loader?id=js' ],
|
|
|
|
use: isProd ? ['babel-loader'] : [
|
|
|
|
// 'react-hot-loader',
|
|
|
|
'babel-loader?cacheDirectory=true'
|
|
|
|
],
|
2016-10-30 09:55:46 +01:00
|
|
|
exclude: /node_modules/
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2016-11-25 19:32:58 +01:00
|
|
|
|
2016-10-30 09:55:46 +01:00
|
|
|
resolve: {
|
2016-11-25 19:32:58 +01:00
|
|
|
modules: [
|
|
|
|
path.resolve('./src'),
|
|
|
|
path.join(__dirname, '../node_modules')
|
|
|
|
],
|
|
|
|
extensions: ['.json', '.js', '.jsx']
|
2016-10-30 09:55:46 +01:00
|
|
|
},
|
2016-11-25 19:32:58 +01:00
|
|
|
|
2016-11-24 03:11:54 +01:00
|
|
|
plugins: Shared.getPlugins().concat([
|
|
|
|
new CopyWebpackPlugin([
|
|
|
|
{
|
|
|
|
from: '../parity.package.json',
|
|
|
|
to: 'package.json',
|
|
|
|
transform: function (content, path) {
|
|
|
|
const json = JSON.parse(content.toString());
|
|
|
|
json.version = packageJson.version;
|
|
|
|
return new Buffer(JSON.stringify(json, null, ' '), 'utf-8');
|
2016-10-30 09:55:46 +01:00
|
|
|
}
|
2016-11-24 03:11:54 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
from: '../LICENSE'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
from: '../parity.md',
|
|
|
|
to: 'README.md'
|
|
|
|
}
|
|
|
|
], { copyUnmodified: true })
|
|
|
|
])
|
2016-10-30 09:55:46 +01:00
|
|
|
};
|