This repository has been archived by the owner on Apr 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathwebpack.config.js
121 lines (113 loc) · 2.67 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
119
120
121
const appConfig = require('./src/App/Config.js').config;
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const isProd = process.env.NODE_ENV === 'production';
const entries = [path.join(__dirname, 'support/entry.js')];
const ConsoleNotifierPlugin = function () {};
ConsoleNotifierPlugin.prototype.compilationDone = (stats) => {
const log = (error) => {
console.log(error);
};
stats.compilation.errors.forEach(log);
};
ConsoleNotifierPlugin.prototype.apply = function (compiler) {
compiler.plugin('done', this.compilationDone.bind(this));
};
const plugins = [
new webpack.DefinePlugin({
'process.env.SIMPLE_STORAGE_ADDRESS': JSON.stringify(process.env.SIMPLE_STORAGE_ADDRESS)
}),
new ConsoleNotifierPlugin(),
new HtmlWebpackPlugin({
template: 'index.html'
})
];
if (isProd) {
plugins.push(
new webpack.LoaderOptionsPlugin({
minimize: true,
debug: false
})
);
}
module.exports = {
entry: entries,
target: 'web',
output: {
filename: 'app.js',
path: __dirname + '/dist',
publicPath: ''
},
devtool: "source-map",
module: {
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
options: {
presets: ['stage-0']
}
},
{
test: /\.purs$/,
loader: 'purs-loader',
exclude: /node_modules/,
query: {
psc: 'psa',
src: ['.psc-package/**/**/src/*.purs', 'src/**/*.purs'],
pscIde: true,
pscPackage: true
}
},
{
test: /\.scss$/,
use: [{
loader: "style-loader" // creates style nodes from JS strings
}, {
loader: "css-loader" // translates CSS into CommonJS
}, {
loader: "sass-loader" // compiles Sass to CSS
}]
}
]
},
plugins: plugins,
resolveLoader: {
modules: [
path.join(__dirname, 'node_modules')
]
},
resolve: {
// alias: {
// 'react': 'preact-compat',
// 'react-dom': 'preact-compat',
// 'create-react-class': 'preact-compat/lib/create-react-class' // beacuse we use createClass
// },
modules: [
'node_modules',
'bower_components'
],
extensions: ['.js', '.purs']
},
performance: { hints: false },
stats: {
hash: false,
timings: false,
version: false,
assets: false,
errors: true,
colors: false,
chunks: false,
children: false,
cached: false,
modules: false,
chunkModules: false
},
devServer: {
port: 8080,
host: "0.0.0.0",
disableHostCheck: true,
}
}