mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
131 lines
4.4 KiB
JavaScript
131 lines
4.4 KiB
JavaScript
|
import { SRC, BUILD, TREZOR_CONNECT, TREZOR_CONNECT_FILES, TREZOR_CONNECT_HTML } from './constants';
|
||
|
import webpack from 'webpack';
|
||
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
||
|
import ExtractTextPlugin from 'extract-text-webpack-plugin';
|
||
|
import CopyWebpackPlugin from 'copy-webpack-plugin';
|
||
|
|
||
|
const extractLess = new ExtractTextPlugin({
|
||
|
filename: 'css/[name].[contenthash].css',
|
||
|
//disable: process.env.NODE_ENV === 'development'
|
||
|
});
|
||
|
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
index: ['whatwg-fetch', `${SRC}js/index.js`]
|
||
|
},
|
||
|
output: {
|
||
|
filename: 'js/[name].[hash].js',
|
||
|
path: BUILD
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.jsx?$/,
|
||
|
exclude: /node_modules/,
|
||
|
use: ['babel-loader']
|
||
|
},
|
||
|
{
|
||
|
test: /\.less$/,
|
||
|
include: `${SRC}styles`,
|
||
|
loader: extractLess.extract({
|
||
|
use: [
|
||
|
{ loader: 'css-loader' },
|
||
|
{ loader: 'less-loader' }
|
||
|
],
|
||
|
fallback: 'style-loader'
|
||
|
})
|
||
|
},
|
||
|
{
|
||
|
test: /\.css$/,
|
||
|
loader: extractLess.extract({
|
||
|
use: [
|
||
|
{ loader: 'css-loader' }
|
||
|
],
|
||
|
fallback: 'style-loader'
|
||
|
})
|
||
|
},
|
||
|
{
|
||
|
test: /\.(png|gif|jpg)$/,
|
||
|
loader: 'file-loader',
|
||
|
query: {
|
||
|
publicPath: '../',
|
||
|
name: 'images/[name].[hash].[ext]',
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
test: /\.(ttf|eot|svg|woff|woff2)$/,
|
||
|
// loader: 'file-loader?publicPath=../&name=fonts/[name].[hash].[ext]',
|
||
|
loader: 'file-loader',
|
||
|
query: {
|
||
|
publicPath: '../',
|
||
|
name: 'fonts/[name].[hash].[ext]',
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
test: /\.(wasm)$/,
|
||
|
loader: 'file-loader',
|
||
|
query: {
|
||
|
name: 'js/[name].[hash].[ext]',
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
test: /\.json$/,
|
||
|
loader: 'json-loader'
|
||
|
},
|
||
|
]
|
||
|
},
|
||
|
resolve: {
|
||
|
modules: [SRC, 'node_modules'],
|
||
|
alias: {
|
||
|
'trezor-connect': `${TREZOR_CONNECT}`,
|
||
|
}
|
||
|
},
|
||
|
performance: {
|
||
|
hints: false
|
||
|
},
|
||
|
plugins: [
|
||
|
|
||
|
extractLess,
|
||
|
|
||
|
new HtmlWebpackPlugin({
|
||
|
template: `${SRC}index.html`,
|
||
|
inject: 'body',
|
||
|
}),
|
||
|
|
||
|
new CopyWebpackPlugin([
|
||
|
//{from: `${SRC}/app/robots.txt`},
|
||
|
//{ from: `${SRC}js/vendor`, to: `${BUILD}js/vendor` },
|
||
|
//{ from: `${SRC}config.json` },
|
||
|
//{ from: `${SRC}images/favicon.png`, to: `${BUILD}favicon.png` },
|
||
|
{ from: `${SRC}images/favicon.ico`, to: `${BUILD}favicon.ico` },
|
||
|
{ from: `${SRC}images/favicon.png`, to: `${BUILD}favicon.png` },
|
||
|
{ from: `${SRC}images/dashboard.png`, to: `${BUILD}images/dashboard.png` },
|
||
|
{ from: `${SRC}data`, to: `${BUILD}data`, cache: false },
|
||
|
]),
|
||
|
new webpack.optimize.OccurrenceOrderPlugin(),
|
||
|
new webpack.NoEmitOnErrorsPlugin(),
|
||
|
// new webpack.optimize.UglifyJsPlugin({
|
||
|
// compress: {
|
||
|
// warnings: false,
|
||
|
// }
|
||
|
// }),
|
||
|
new CopyWebpackPlugin([
|
||
|
{ from: `${TREZOR_CONNECT_FILES}config.json`, to: `${BUILD}/data/config.json` },
|
||
|
{ from: `${TREZOR_CONNECT_FILES}coins.json`, to: `${BUILD}/data/coins.json` },
|
||
|
{ from: `${TREZOR_CONNECT_FILES}releases-1.json`, to: `${BUILD}/data/releases-1.json` },
|
||
|
{ from: `${TREZOR_CONNECT_FILES}releases-2.json`, to: `${BUILD}/data/releases-2.json` },
|
||
|
{ from: `${TREZOR_CONNECT_FILES}latest.txt`, to: `${BUILD}/data/latest.txt` },
|
||
|
{ from: `${TREZOR_CONNECT_FILES}config_signed.bin`, to: `${BUILD}/data/config_signed.bin` },
|
||
|
]),
|
||
|
new webpack.DefinePlugin({
|
||
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
||
|
PRODUCTION: JSON.stringify(false)
|
||
|
}),
|
||
|
new webpack.IgnorePlugin(/node-fetch/), // for trezor-link warning
|
||
|
],
|
||
|
// ignoring "fs" import in fastxpub
|
||
|
node: {
|
||
|
fs: "empty"
|
||
|
}
|
||
|
}
|