forked from sulu/sulu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
162 lines (157 loc) · 6.74 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* eslint-disable flowtype/require-valid-file-annotation */
/* eslint-disable import/no-nodejs-modules */
/* eslint-disable import/no-dynamic-require */
const fs = require('fs');
const path = require('path');
module.exports = (env, argv) => { // eslint-disable-line no-undef
let publicDir = 'public';
const outputPath = env && env.output_path ? env.output_path : path.join('build', 'admin');
// eslint-disable-next-line no-undef
const projectRootPath = env && env.project_root_path ? env.project_root_path : __dirname;
const nodeModulesPath = env && env.node_modules_path
? env.node_modules_path
: path.resolve(projectRootPath, 'node_modules');
const composerConfig = require(path.resolve(projectRootPath, 'composer.json'));
if (composerConfig.extra && composerConfig.extra['public-dir']) {
publicDir = composerConfig.extra['public-dir'];
}
// default value for version must match default value in SuluVersionPass.php
let suluVersion = '_._._';
if (fs.existsSync(path.resolve(projectRootPath, 'composer.lock'))) {
const composerLock = JSON.parse(fs.readFileSync(path.resolve(projectRootPath, 'composer.lock')));
const suluPackage = composerLock.packages.find((packageItem) => packageItem.name === 'sulu/sulu');
suluVersion = suluPackage ? suluPackage.version : suluVersion;
}
const webpack = require(path.resolve(nodeModulesPath, 'webpack'));
const CleanObsoleteChunksPlugin = require(path.resolve(nodeModulesPath, 'webpack-clean-obsolete-chunks'));
const CleanWebpackPlugin = require(path.resolve(nodeModulesPath, 'clean-webpack-plugin')).CleanWebpackPlugin;
const ManifestPlugin = require(path.resolve(nodeModulesPath, 'webpack-manifest-plugin'));
const MiniCssExtractPlugin = require(path.resolve(nodeModulesPath, 'mini-css-extract-plugin'));
const OptimizeCssAssetsPlugin = require(path.resolve(nodeModulesPath, 'optimize-css-assets-webpack-plugin'));
const {styles} = require(path.resolve(nodeModulesPath, '@ckeditor/ckeditor5-dev-utils'));
return {
entry: [path.resolve(__dirname, 'index.js')], // eslint-disable-line no-undef
output: {
path: path.resolve(projectRootPath, publicDir),
filename: outputPath + '/[name].[chunkhash].js',
},
devtool: argv.mode === 'development' ? 'eval-source-map' : 'source-map',
plugins: [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: [path.resolve(projectRootPath, publicDir, outputPath)],
dangerouslyAllowCleanPatternsOutsideProject: true,
dry: false,
}),
new MiniCssExtractPlugin({
filename: outputPath + '/[name].[chunkhash].css',
}),
new OptimizeCssAssetsPlugin(),
new ManifestPlugin({
fileName: outputPath + '/manifest.json',
}),
new CleanObsoleteChunksPlugin(),
new webpack.DefinePlugin({
SULU_ADMIN_BUILD_VERSION: JSON.stringify(suluVersion),
}),
],
resolve: {
alias: {
'fos-jsrouting': path.resolve(
projectRootPath,
'vendor/friendsofsymfony/jsrouting-bundle/Resources/public/js'
),
},
modules: ['node_modules', nodeModulesPath],
},
resolveLoader: {
modules: ['node_modules', nodeModulesPath],
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules[/\\](?!(sulu-(.*)-bundle|@ckeditor|lodash-es)[/\\])/,
use: {
loader: 'babel-loader',
options: {
cacheDirectory: true,
cacheCompression: false,
},
},
},
{
test: /\.css/,
exclude: /ckeditor5-[^/\\]+[/\\]theme[/\\].+\.css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
],
},
{
test: /\.(scss)$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[local]--[hash:base64:10]',
},
importLoaders: 1,
localsConvention: 'camelCase',
},
},
'postcss-loader',
],
},
{
test: /ckeditor5-[^/\\]+[/\\]theme[/\\]icons[/\\][^/\\]+\.svg$/,
use: 'raw-loader',
},
{
test: /ckeditor5-[^/\\]+[/\\]theme[/\\].+\.css$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: 'css-loader',
},
{
loader: 'postcss-loader',
options: styles.getPostCssConfig({
themeImporter: {
themePath: require.resolve(
path.resolve(nodeModulesPath, '@ckeditor/ckeditor5-theme-lark')
),
},
minify: true,
}),
},
],
},
{
test: /\.(svg|ttf|woff|woff2|eot)(\?.*$|$)/,
exclude: /ckeditor5-[^/\\]+[/\\]theme[/\\]icons[/\\][^/\\]+\.svg$/,
use: [
{
loader: 'file-loader',
options: {
name: '/' + outputPath + '/fonts/[name].[hash].[ext]',
},
},
],
},
{
test: /\.(jpg|gif|png)(\?.*$|$)/,
use: [
{
loader: 'file-loader',
options: {
name: '/' + outputPath + '/images/[name].[hash].[ext]',
},
},
],
},
],
},
};
};