This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.worker.js
207 lines (199 loc) · 6.78 KB
/
webpack.config.worker.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
import path from 'path';
import webpack from 'webpack';
import merge from 'webpack-merge';
import UglifyJSPlugin from 'uglifyjs-webpack-plugin';
import baseConfig from './webpack.config.base';
const CleanWebpackPlugin = require('clean-webpack-plugin');
export default merge(baseConfig, {
devtool: 'source-map',
entry: ['./main/ipfs.web.worker.js'],
output: {
path: path.join(__dirname, 'dist'),
filename: "ipfs.web.worker.js",
},
plugins: [
new CleanWebpackPlugin(['dist']),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production'),
'process.env.DARK_THEME': JSON.stringify(process.env.DARK_THEME),
'process.env.AKASHA_VERSION': JSON.stringify('beta#1')
}),
new UglifyJSPlugin({
parallel: true,
sourceMap: true
})
],
target: 'web'
});
// import path from 'path';
// import webpack from 'webpack';
// import ExtractTextPlugin from 'extract-text-webpack-plugin';
// import merge from 'webpack-merge';
// import HtmlWebpackPlugin from 'html-webpack-plugin';
// import UglifyJSPlugin from 'uglifyjs-webpack-plugin';
// import baseConfig from './webpack.config.base';
//
// const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin');
// // @TODO extract akasha themes in separated files
// export default merge(baseConfig, {
// devtool: 'source-map',
//
// entry: ['./main/index'],
//
// output: {
// path: path.join(__dirname, 'dist')
// },
//
// module: {
// rules: [
// {
// test: /\.global\.css$/,
// use: [
// { loader: 'style-loader' },
// {
// loader: 'css-loader',
// options: {
// sourceMap: true,
// },
// }
// ]
// },
// {
// test: /^((?!\.global).)*\.css$/,
// use: [
// { loader: 'style-loader' },
// {
// loader: 'css-loader',
// options: {
// modules: true,
// sourceMap: true,
// importLoaders: 1,
// localIdentName: '[name]__[local]__[hash:base64:5]',
// }
// },
// ]
// },
// {
// test: /^((?!\.global).)*\.scss$/,
// use: [
// { loader: 'style-loader' },
// {
// loader: 'css-loader',
// options: {
// modules: true,
// sourceMap: true,
// importLoaders: 1,
// localIdentName: '[name]__[local]__[hash:base64:5]',
// }
// },
// { loader: 'sass-loader', options: { sourceMap: true } }
// ]
// },
// {
// test: /^((?!\.global).)*\.less$/,
// use: [
// { loader: 'style-loader' },
// {
// loader: 'css-loader',
// options: {
// sourceMap: true,
// importLoaders: 1,
// localIdentName: '[name]__[local]__[hash:base64:5]',
// }
// },
// { loader: 'less-loader', options: { sourceMap: true } }
// ]
// },
// {
// test: /\.woff(\?[a-z0-9-=]+)?$/,
// use: {
// loader: 'file-loader',
// options: {
// limit: 10000,
// mimetype: 'application/font-woff',
// name: 'fonts/[name].[ext]'
// }
// },
// },
// {
// test: /\.woff2(\?[a-z0-9-=]+)?$/,
// use: {
// loader: 'file-loader',
// options: {
// limit: 10000,
// mimetype: 'application/font-woff',
// name: 'fonts/[name].[ext]'
// }
// }
// },
// {
// test: /\.ttf(\?[a-z0-9-=]+)?$/,
// use: {
// loader: 'file-loader',
// options: {
// limit: 10000,
// mimetype: 'application/octet-stream',
// name: 'fonts/[name].[ext]'
// }
// }
// },
// {
// test: /\.eot(\?[a-z0-9-=]+)?$/,
// use: {
// loader: 'file-loader',
// options: {
// name: 'fonts/[name].[ext]'
// }
// }
// },
// {
// test: /\.svg(\?[a-z0-9-=]+)?$/,
// use: {
// loader: 'file-loader',
// options: {
// limit: 10000,
// mimetype: 'image/svg+xml',
// name: 'fonts/[name].[ext]'
// }
// }
// },
// {
// test: /\.(?:ico|gif|png|jpg|jpeg|webp)$/,
// use: {
// loader: 'file-loader',
// options: {
// name: 'fonts/[name].[ext]'
// }
// }
// }
// ]
// },
//
// plugins: [
// /**
// * Create global constants which can be configured at compile time.
// *
// * Useful for allowing different behaviour between development builds and
// * release builds
// *
// * NODE_ENV should be production so that modules do not perform certain
// * development checks
// */
// new webpack.DefinePlugin({
// 'process.env.NODE_ENV': JSON.stringify('production'),
// 'process.env.DARK_THEME': JSON.stringify(process.env.DARK_THEME),
// 'process.env.AKASHA_VERSION': JSON.stringify('beta#1')
// }),
// /**
// * Dynamically generate index.html page
// */
// new HtmlWebpackPlugin({
// filename: 'index.html',
// template: 'app/app.template.html',
// inject: false
// }),
//
// ],
// mode: 'development',
// target: 'web'
// });