mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-24 09:18:09 +00:00
removed trezor-connect webpack alias (build)
This commit is contained in:
parent
fce5f9d36f
commit
89aee7eebd
@ -1,4 +1,4 @@
|
|||||||
import { SRC, BUILD, TREZOR_CONNECT, TREZOR_CONNECT_FILES, TREZOR_CONNECT_HTML } from './constants';
|
import { SRC, BUILD } from './constants';
|
||||||
import webpack from 'webpack';
|
import webpack from 'webpack';
|
||||||
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
||||||
import ExtractTextPlugin from 'extract-text-webpack-plugin';
|
import ExtractTextPlugin from 'extract-text-webpack-plugin';
|
||||||
@ -6,7 +6,7 @@ import CopyWebpackPlugin from 'copy-webpack-plugin';
|
|||||||
|
|
||||||
const extractLess = new ExtractTextPlugin({
|
const extractLess = new ExtractTextPlugin({
|
||||||
filename: 'css/[name].[contenthash].css',
|
filename: 'css/[name].[contenthash].css',
|
||||||
//disable: process.env.NODE_ENV === 'development'
|
// disable: process.env.NODE_ENV === 'development'
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
@ -39,7 +39,10 @@ module.exports = {
|
|||||||
test: /\.css$/,
|
test: /\.css$/,
|
||||||
loader: extractLess.extract({
|
loader: extractLess.extract({
|
||||||
use: [
|
use: [
|
||||||
{ loader: 'css-loader' }
|
{
|
||||||
|
loader: 'css-loader',
|
||||||
|
options: { minimize: true }
|
||||||
|
}
|
||||||
],
|
],
|
||||||
fallback: 'style-loader'
|
fallback: 'style-loader'
|
||||||
})
|
})
|
||||||
@ -75,10 +78,7 @@ module.exports = {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
resolve: {
|
resolve: {
|
||||||
modules: [SRC, 'node_modules'],
|
modules: [SRC, 'node_modules']
|
||||||
alias: {
|
|
||||||
'trezor-connect': `${TREZOR_CONNECT}`,
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
performance: {
|
performance: {
|
||||||
hints: false
|
hints: false
|
||||||
@ -96,7 +96,6 @@ module.exports = {
|
|||||||
//{from: `${SRC}/app/robots.txt`},
|
//{from: `${SRC}/app/robots.txt`},
|
||||||
//{ from: `${SRC}js/vendor`, to: `${BUILD}js/vendor` },
|
//{ from: `${SRC}js/vendor`, to: `${BUILD}js/vendor` },
|
||||||
//{ from: `${SRC}config.json` },
|
//{ 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.ico`, to: `${BUILD}favicon.ico` },
|
||||||
{ from: `${SRC}images/favicon.png`, to: `${BUILD}favicon.png` },
|
{ from: `${SRC}images/favicon.png`, to: `${BUILD}favicon.png` },
|
||||||
{ from: `${SRC}images/dashboard.png`, to: `${BUILD}images/dashboard.png` },
|
{ from: `${SRC}images/dashboard.png`, to: `${BUILD}images/dashboard.png` },
|
||||||
@ -109,14 +108,6 @@ module.exports = {
|
|||||||
// warnings: false,
|
// 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({
|
new webpack.DefinePlugin({
|
||||||
'process.env.NODE_ENV': JSON.stringify('production'),
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
||||||
PRODUCTION: JSON.stringify(false)
|
PRODUCTION: JSON.stringify(false)
|
||||||
|
Loading…
Reference in New Issue
Block a user