2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-10-26 13:44:38 +02:00
|
|
|
// 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');
|
|
|
|
|
2017-04-20 11:17:58 +02:00
|
|
|
const rulesEs6 = require('./rules/es6');
|
|
|
|
const rulesParity = require('./rules/parity');
|
2016-11-24 03:11:54 +01:00
|
|
|
const Shared = require('./shared');
|
|
|
|
|
2017-08-04 13:26:56 +02:00
|
|
|
const isProd = process.env.NODE_ENV === 'production';
|
2016-10-26 13:44:38 +02:00
|
|
|
const DEST = process.env.BUILD_DEST || '.build';
|
|
|
|
|
2017-08-01 14:41:13 +02:00
|
|
|
module.exports = {
|
|
|
|
context: path.join(__dirname, '../src'),
|
2017-08-04 13:26:56 +02:00
|
|
|
devtool: isProd
|
2017-11-13 09:31:08 +01:00
|
|
|
? false
|
2017-08-04 13:26:56 +02:00
|
|
|
: '#eval',
|
2017-08-01 14:41:13 +02:00
|
|
|
entry: {
|
|
|
|
inject: ['./inject.js'],
|
2017-11-13 09:31:08 +01:00
|
|
|
parity: ['./inject.script.js'],
|
|
|
|
web3: ['./inject.script.js']
|
2017-08-01 14:41:13 +02:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
path: path.join(__dirname, '../', DEST),
|
|
|
|
filename: '[name].js',
|
|
|
|
library: '[name].js',
|
|
|
|
libraryTarget: 'umd'
|
|
|
|
},
|
2016-12-30 12:28:12 +01:00
|
|
|
|
2017-08-01 14:41:13 +02:00
|
|
|
resolve: {
|
2017-11-13 09:31:08 +01:00
|
|
|
alias: {}
|
2017-08-01 14:41:13 +02:00
|
|
|
},
|
2016-12-30 12:28:12 +01:00
|
|
|
|
2017-08-01 14:41:13 +02:00
|
|
|
node: {
|
|
|
|
fs: 'empty'
|
|
|
|
},
|
2017-06-22 11:49:44 +02:00
|
|
|
|
2017-08-01 14:41:13 +02:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
rulesParity,
|
|
|
|
rulesEs6,
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
exclude: /node_modules/,
|
2017-08-04 14:28:55 +02:00
|
|
|
use: [ {
|
|
|
|
loader: 'happypack/loader',
|
|
|
|
options: {
|
|
|
|
id: 'babel'
|
|
|
|
}
|
|
|
|
} ]
|
2017-08-01 14:41:13 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.json$/,
|
2017-08-01 18:11:35 +02:00
|
|
|
use: ['json-loader']
|
2017-08-01 14:41:13 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.html$/,
|
|
|
|
use: [ {
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[ext]'
|
|
|
|
}
|
|
|
|
} ]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
plugins: Shared.getPlugins()
|
|
|
|
};
|