-
Notifications
You must be signed in to change notification settings - Fork 43
/
webpack.mix.js
187 lines (171 loc) · 5.58 KB
/
webpack.mix.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/**
* Laravel Mix configuration file.
*
* Laravel Mix is a layer built on top of WordPress that simplifies much of the
* complexity of building out a Webpack configuration file. Use this file to
* configure how your assets are handled in the build process.
*
* @link https://laravel.com/docs/5.6/mix
*
* @package Mythic
* @author Justin Tadlock <[email protected]>
* @copyright 2018 Justin Tadlock
* @link https://themehybrid.com/themes/mythic
* @license https://www.gnu.org/licenses/gpl-2.0.html GPL-2.0-or-later
*/
// Import required packages.
const mix = require( 'laravel-mix' );
const ImageminPlugin = require( 'imagemin-webpack-plugin' ).default;
const CopyWebpackPlugin = require( 'copy-webpack-plugin' );
const imageminMozjpeg = require( 'imagemin-mozjpeg' );
/*
* -----------------------------------------------------------------------------
* Theme Export Process
* -----------------------------------------------------------------------------
* Configure the export process in `webpack.mix.export.js`. This bit of code
* should remain at the top of the file here so that it bails early when the
* `export` command is run.
* -----------------------------------------------------------------------------
*/
if ( process.env.export ) {
const exportTheme = require( './webpack.mix.export.js' );
return;
}
/*
* -----------------------------------------------------------------------------
* Build Process
* -----------------------------------------------------------------------------
* The section below handles processing, compiling, transpiling, and combining
* all of the theme's assets into their final location. This is the meat of the
* build process.
* -----------------------------------------------------------------------------
*/
/*
* Sets the development path to assets. By default, this is the `/resources`
* folder in the theme.
*/
const devPath = 'resources';
/*
* Sets the path to the generated assets. By default, this is the `/dist` folder
* in the theme. If doing something custom, make sure to change this everywhere.
*/
mix.setPublicPath( 'dist' );
/*
* Set Laravel Mix options.
*
* @link https://laravel.com/docs/5.6/mix#postcss
* @link https://laravel.com/docs/5.6/mix#url-processing
*/
mix.options( {
postCss : [ require( 'postcss-preset-env' )() ],
processCssUrls : false
} );
/*
* Builds sources maps for assets.
*
* @link https://laravel.com/docs/5.6/mix#css-source-maps
*/
mix.sourceMaps();
/*
* Versioning and cache busting. Append a unique hash for production assets. If
* you only want versioned assets in production, do a conditional check for
* `mix.inProduction()`.
*
* @link https://laravel.com/docs/5.6/mix#versioning-and-cache-busting
*/
mix.version();
/*
* Compile JavaScript.
*
* @link https://laravel.com/docs/5.6/mix#working-with-scripts
*/
mix.js( `${devPath}/js/app.js`, 'js' )
.js( `${devPath}/js/customize-controls.js`, 'js' )
.js( `${devPath}/js/customize-preview.js`, 'js' );
/*
* Compile CSS. Mix supports Sass, Less, Stylus, and plain CSS, and has functions
* for each of them.
*
* @link https://laravel.com/docs/5.6/mix#working-with-stylesheets
* @link https://laravel.com/docs/5.6/mix#sass
* @link https://github.com/sass/node-sass#options
*/
// Sass configuration.
var sassConfig = {
outputStyle : 'expanded',
indentType : 'tab',
indentWidth : 1
};
// Compile SASS/CSS.
mix.sass( `${devPath}/scss/screen.scss`, 'css', sassConfig )
.sass( `${devPath}/scss/editor.scss`, 'css', sassConfig )
.sass( `${devPath}/scss/customize-controls.scss`, 'css', sassConfig );
/*
* Add custom Webpack configuration.
*
* Laravel Mix doesn't currently minimize images while using its `.copy()`
* function, so we're using the `CopyWebpackPlugin` for processing and copying
* images into the distribution folder.
*
* @link https://laravel.com/docs/5.6/mix#custom-webpack-configuration
* @link https://webpack.js.org/configuration/
*/
mix.webpackConfig( {
stats : 'minimal',
devtool : mix.inProduction() ? false : 'source-map',
performance : { hints : false },
externals : { jquery : 'jQuery' },
resolve : {
alias : {
// Alias for Hybrid Customize assets.
// Import from `hybrid-customize/js` or `~hybrid-customize/scss`.
'hybrid-customize' : path.resolve( __dirname, 'vendor/justintadlock/hybrid-customize/resources/' )
}
},
plugins : [
// @link https://github.com/webpack-contrib/copy-webpack-plugin
new CopyWebpackPlugin( [
{ from : `${devPath}/img`, to : 'img' },
{ from : `${devPath}/svg`, to : 'svg' },
{ from : `${devPath}/fonts`, to : 'fonts' }
] ),
// @link https://github.com/Klathmon/imagemin-webpack-plugin
new ImageminPlugin( {
test : /\.(jpe?g|png|gif|svg)$/i,
disable : process.env.NODE_ENV !== 'production',
optipng : { optimizationLevel : 3 },
gifsicle : { optimizationLevel : 3 },
pngquant : {
quality : '65-90',
speed : 4
},
svgo : {
plugins : [
{ cleanupIDs : false },
{ removeViewBox : false },
{ removeUnknownsAndDefaults : false }
]
},
plugins : [
// @link https://github.com/imagemin/imagemin-mozjpeg
imageminMozjpeg( { quality : 75 } )
]
} )
]
} );
if ( process.env.sync ) {
/*
* Monitor files for changes and inject your changes into the browser.
*
* @link https://laravel.com/docs/5.6/mix#browsersync-reloading
*/
mix.browserSync( {
proxy : 'localhost',
files : [
'dist/**/*',
`${devPath}/views/**/*.php`,
'app/**/*.php',
'functions.php'
]
} );
}