-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
111 lines (105 loc) · 2.91 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
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.svgInlineLoader.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',
publicPath: '',
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]'
},
importLoaders: 1
}
},
{
loader: 'postcss-loader',
options: {
plugins: () => [
require('postcss-modules-values-replace')({}),
require('postcss-preset-env')({
importFrom: require.resolve('@jetbrains/ring-ui/components/global/variables.css'),
features: {
'postcss-custom-properties': {
preserve: true
}
}
})
]
}
}
]
},
{
test: /\.css$/,
include: [
join(__dirname, 'node_modules', 'react-calendar'),
join(__dirname, 'node_modules', 'react-clock'),
join(__dirname, 'node_modules', 'react-datetime-picker')
],
use: ['style-loader', 'css-loader']
},
{
test: /\.js$/,
include: [
join(__dirname, 'node_modules/chai-as-promised'),
componentsPath
],
loader: 'babel-loader?cacheDirectory'
}
]
},
devServer: {
headers: {
'Access-Control-Allow-Origin': '*'
},
stats: {
assets: false,
children: false,
chunks: false,
hash: false,
version: false
}
},
plugins: [
new HtmlWebpackPlugin({
template: 'html-loader?interpolate!src/index.html'
}),
new CopyWebpackPlugin([
{from: 'pict/*'},
'manifest.json'
])
]
});
module.exports = webpackConfig;