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
|
var path = require('path');
var fs = require('fs');
var webpack = require('webpack');
// moment locales hack
var momentLocalePath = path.join(
__dirname, 'node_modules', 'moment', 'src', 'lib', 'locale', 'locale');
if (!fs.existsSync(momentLocalePath)) {
fs.mkdirSync(momentLocalePath);
}
module.exports = {
entry: {
main: '.' + path.sep + path.join('src_js', 'opcut', 'main')
},
output: {
filename: '[name].js',
path: path.join(__dirname, 'build', 'jsopcut'),
pathinfo: true
},
module: {
rules: [
{
test: /\.js$/,
exclude: [/node_modules(?!(\/moment\/src)|(\\moment\\src))/],
loader: 'babel-loader',
options: {
presets: [['es2015', {modules: false}]],
plugins: []
// plugins: ["transform-runtime",
// "transform-decorators",
// ["transform-async-to-module-method",
// {module: "bluebird",
// method: "coroutine"}]],
// retainLines: true
}
},
{
test: /\.scss$/,
use: ["style-loader", "css-loader", "resolve-url-loader", "sass-loader?sourceMap"]
},
{
test: /(\/|\\)buffer(\/|\\)index\.js$/,
use: 'imports-loader?global=>window'
},
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, use: "url-loader?name=fonts/[hash].[ext]&limit=10000&mimetype=application/font-woff" },
{ test: /\.woff2(\?v=\d+\.\d+\.\d+)?$/, use: "url-loader?name=fonts/[hash].[ext]&limit=10000&mimetype=application/font-woff" },
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, use: "url-loader?name=fonts/[hash].[ext]&limit=10000&mimetype=application/octet-stream" },
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, use: "file-loader?name=fonts/[hash].[ext]" },
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, use: "url-loader?name=fonts/[hash].[ext]&limit=10000&mimetype=image/svg+xml" }
]
},
resolve: {
modules: [
path.join(__dirname, 'src_js'),
path.join(__dirname, 'src_web'),
path.join(__dirname, 'node_modules')],
alias: {
'ByteBuffer': 'bytebuffer',
'Long': 'long',
'underscore': 'underscore/underscore',
'moment': 'moment/src/moment'
}
},
resolveLoader: {
alias: {
static: 'file-loader?context=src_web/static&name=[path][name].[ext]',
template: 'raw'
}
},
externals: [{
'fs': 'commonjs fs',
'app': 'commonjs app',
'browser-window': 'commonjs browser-window',
'electron': 'commonjs electron',
'child_process': 'commonjs child_process'
}],
node: {
console: false,
global: false,
process: false,
Buffer: false,
__filename: false,
__dirname: false,
setImmediate: false
},
//devtool: 'inline-source-map',
devtool: 'source-map',
plugins: [
//new webpack.optimize.UglifyJsPlugin({compress: {warnings: false}})
]
};
|