forked from asterics/AsTeRICS-Grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
118 lines (106 loc) · 3.03 KB
/
webpack.config.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
var path = require('path');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
module.exports = env => {
var baseDir = '';
var buildDir = 'app/build/';
var buildDirLegacy = 'app/build_legacy/';
var entryScript = './src/js/mainScript.js';
var outputFilename = 'asterics-grid.bundle.js';
var mode = env && env.production ? 'production' : 'development';
var scssRule = {
test: /\.(s*)css$/,
use: ['style-loader', 'css-loader', 'sass-loader']
};
var vueRule = {
test: /\.vue$/,
loader: 'vue-loader'
};
var babelRule = {
test: /\.m?js$/,
use: {
loader: 'babel-loader',
options: {
presets: [
['@babel/env', {
modules: false,
useBuiltIns: false,
targets: {
browsers: [
'> 1%',
'last 2 versions',
'Firefox ESR',
'ie >= 11'
],
},
}]
],
},
},
};
var resolve = {
alias: {
//objectmodel: "../../../node_modules/objectmodel/dist/object-model.js"
vue: 'vue/dist/vue.esm.js'
}
};
var externals = {
jquery: '$',
PouchDB: 'PouchDB'
};
var plugins = [new VueLoaderPlugin()];
function log(msg) {
if(!env || !env.nolog) {
console.log(msg);
}
}
function getDevServer(publicPath) {
return {
contentBase: path.resolve(__dirname),
publicPath: '/' + publicPath,
host: '0.0.0.0',
port: 9095,
open: false,
watchContentBase: true
};
}
var configNormal = {
mode: mode,
entry: entryScript,
plugins: plugins,
output: {
path: path.resolve(__dirname, baseDir + buildDir),
publicPath: "./" + buildDir,
filename: outputFilename,
chunkFilename: '[name].bundle.js',
},
resolve: resolve,
devServer: getDevServer(buildDir),
externals: externals,
module: {
rules: [scssRule, vueRule]
}
};
var configLegacy = {
mode: mode,
entry: entryScript,
plugins: plugins,
output: {
path: path.resolve(__dirname, baseDir + buildDirLegacy),
publicPath: "./" + buildDirLegacy,
filename: outputFilename,
chunkFilename: '[name].bundle.js',
},
resolve: resolve,
devServer: getDevServer(buildDirLegacy),
externals: externals,
module: {
rules: [babelRule, scssRule, vueRule],
}
};
if (env.normalserver) {
return configNormal;
} else if (env.legacyserver) {
return configLegacy;
}
return [configNormal, configLegacy];
};