-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
116 lines (110 loc) · 2.83 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
const {join, resolve} = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ringUiWebpackConfig = require('@jetbrains/ring-ui/webpack.config');
const pkgConfig = require('./package.json').config;
const componentsPath = join(__dirname, pkgConfig.components);
// Patch @jetbrains/ring-ui svg-sprite-loader config
ringUiWebpackConfig.loaders.svgSpriteLoader.include.push(
require('@jetbrains/logos'),
require('@jetbrains/icons')
);
const webpackConfig = () => ({
entry: `${componentsPath}/app/app.js`,
resolve: {
mainFields: ['module', 'browser', 'main'],
alias: {
react: resolve('./node_modules/react'),
'react-dom': resolve('./node_modules/react-dom'),
'@jetbrains/ring-ui': resolve('./node_modules/@jetbrains/ring-ui')
}
},
output: {
path: resolve(__dirname, pkgConfig.dist),
filename: '[name].js',
devtoolModuleFilenameTemplate: '[absolute-resource-path]'
},
module: {
rules: [
...ringUiWebpackConfig.config.module.rules,
{
test: /\.css$/,
include: componentsPath,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
import: true,
modules: {
localIdentName: '[name]__[local]__[hash:base64:7]',
localIdentContext: resolve('.', './src')
},
importLoaders: 1
}
},
{
loader: 'postcss-loader',
options: {
postcssOptions: {
plugins: [
['postcss-preset-env', {
stage: 3,
features: {
'nesting-rules': true
}
}]
]
}
}
}
]
},
{
test: /\.css$/,
exclude: [componentsPath, ringUiWebpackConfig.componentsPath],
use: ['style-loader', 'css-loader']
},
{
test: /\.js$/,
include: [
componentsPath
],
loader: 'babel-loader?cacheDirectory'
},
{
test: /\.po$/,
include: componentsPath,
use: [
'json-loader',
{
loader: 'angular-gettext-loader',
options: {format: 'json'}
}
]
}
]
},
devServer: {
headers: {
'Access-Control-Allow-Origin': '*'
},
disableHostCheck: true,
stats: {
assets: false,
children: false,
chunks: false,
hash: false,
version: false
}
},
plugins: [
new HtmlWebpackPlugin({
template: 'html-loader?interpolate!src/index.html'
}),
new CopyWebpackPlugin([
'manifest.json'
], {})
]
});
module.exports = webpackConfig;