ce1609726f
* Start removing duplicated functionality (v1 inside v2) * Update compilation targets * Update locks * Fix js-old build * Update with removed extra references * Adapt dev.{parity,web3}.html for extra debug info * Update dependencies * Remove Tooltips * Update dependencies * Only inject window.ethereum once * Fix versions to 2.0.x for @parity libraries * Update to @parity/api 2.1.x * Update for @parity/api 2.1.x * Freeze signer plugin dependency hashes * Fix lint * Move local account handling from API * Update for 2.2.x @parity/{shared,ui} * Update API references for middleware * Install updated dependencies * Update for build * Always do local builds for development * Remove unused hasAccounts property * Fix Windows build for js-old * Adjust inclusing rules to be Windows friendly * Explicitly add --config option to webpack * Add process.env.EMBED flag for Windows compatability * Revert embed flag * Fix build * Merge changes from beta * Update packages after merge * Update Accounts from beta * Update with beta * Remove upgrade check * Fix CI build script execution * Make rm -rf commands cross-platform * Remove ability to deploy wallets (only watch) * Update path references for js-old (Windows) * Render local dapps first * Cleanup dependencies
138 lines
3.6 KiB
JavaScript
138 lines
3.6 KiB
JavaScript
// Copyright 2015-2017 Parity Technologies (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');
|
|
const packageJson = require('../package.json');
|
|
|
|
const Shared = require('./shared');
|
|
|
|
const ENV = process.env.NODE_ENV || 'development';
|
|
const isProd = ENV === 'production';
|
|
|
|
const LIBRARY = process.env.LIBRARY;
|
|
|
|
if (!LIBRARY) {
|
|
process.exit(-1);
|
|
}
|
|
|
|
const SRC = LIBRARY.toLowerCase();
|
|
const OUTPUT_PATH = path.join(__dirname, '../.npmjs', SRC);
|
|
|
|
const TEST_CONTEXT = SRC === 'parity'
|
|
? '../npm/parity/test/'
|
|
: `../src/3rdparty/${SRC}/`;
|
|
|
|
console.log(`Building ${LIBRARY} from library.${SRC}.js to .npmjs/${SRC}`);
|
|
|
|
module.exports = {
|
|
context: path.join(__dirname, '../src'),
|
|
target: 'node',
|
|
entry: `library.${SRC}.js`,
|
|
output: {
|
|
path: OUTPUT_PATH,
|
|
filename: 'library.js',
|
|
library: LIBRARY,
|
|
libraryTarget: 'umd',
|
|
umdNamedDefine: true
|
|
},
|
|
externals: {
|
|
'node-fetch': 'node-fetch'
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /(\.jsx|\.js)$/,
|
|
// use: [ 'happypack/loader?id=js' ],
|
|
use: isProd ? ['babel-loader'] : [
|
|
// 'react-hot-loader',
|
|
'babel-loader?cacheDirectory=true'
|
|
],
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
include: /(ethereumjs-tx|wordlist)/,
|
|
use: 'babel-loader'
|
|
}
|
|
]
|
|
},
|
|
node: {
|
|
fs: 'empty'
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'~': path.resolve(__dirname, '../src')
|
|
},
|
|
modules: [
|
|
path.resolve('./src'),
|
|
path.join(__dirname, '../node_modules')
|
|
],
|
|
extensions: ['.json', '.js', '.jsx']
|
|
},
|
|
|
|
plugins: Shared.getPlugins().concat([
|
|
new CopyWebpackPlugin([
|
|
{
|
|
from: `../npm/${SRC}/package.json`,
|
|
to: 'package.json',
|
|
transform: function (content, path) {
|
|
const json = JSON.parse(content.toString());
|
|
|
|
json.devDependencies.chai = packageJson.devDependencies.chai;
|
|
json.devDependencies.mocha = packageJson.devDependencies.mocha;
|
|
json.devDependencies.nock = packageJson.devDependencies.nock;
|
|
json.scripts.test = 'mocha \'test/*.spec.js\'';
|
|
json.version = packageJson.version;
|
|
|
|
return new Buffer(JSON.stringify(json, null, ' '), 'utf-8');
|
|
}
|
|
},
|
|
{
|
|
from: '../LICENSE'
|
|
},
|
|
|
|
// Copy the base test config
|
|
{
|
|
from: '../npm/test',
|
|
to: 'test'
|
|
},
|
|
|
|
// Copy the actual tests
|
|
{
|
|
context: TEST_CONTEXT,
|
|
from: '**/*.spec.js',
|
|
to: 'test',
|
|
transform: function (content, path) {
|
|
let output = content.toString();
|
|
|
|
// Don't skip tests
|
|
output = output.replace(/describe\.skip/, 'describe');
|
|
|
|
// Require parent library
|
|
output = output.replace('require(\'./\')', 'require(\'../\')');
|
|
|
|
return new Buffer(output, 'utf-8');
|
|
}
|
|
},
|
|
{
|
|
from: `../npm/${SRC}/README.md`,
|
|
to: 'README.md'
|
|
}
|
|
], { copyUnmodified: true })
|
|
])
|
|
};
|