forked from CalderaWP/Caldera-Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
156 lines (143 loc) · 4.44 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
/**
* External dependencies
*/
//utils need for building pro
const _ = require('./clients/pro/webpack/utils');
// Load webpack for use of certain webpack tools and methods
const webpack = require( 'webpack' );
// For extracting CSS (and SASS) into separate files
const ExtractTextPlugin = require( 'extract-text-webpack-plugin' );
//Creates HTML for mounting using a PHP file
const HtmlWebpackPlugin = require('html-webpack-plugin');
// Main CSS loader for everything but blocks..
const cssExtractTextPlugin = new ExtractTextPlugin({
// Extracts CSS into a build folder inside the directory current directory
filename: './build/[name]/build/style.min.css'
});
// Configuration for the ExtractTextPlugin.
// Handles CSS
const extractConfig = {
use: [
{ loader: 'raw-loader' },
{
loader: 'postcss-loader',
options: {
plugins: [ require( 'autoprefixer' ) ]
}
},
{
loader: 'sass-loader',
query: {
outputStyle:
// Compresses CSS when in production
'production' === process.env.NODE_ENV ? 'compressed' : 'nested'
}
}
]
};
// Define JavaScript entry points
const entryPointNames = [
'privacy',
'blocks',
'pro'
];
// Setup externals
const externals = {
jquery: 'jQuery'
};
// Setup external for each entry point
entryPointNames.forEach( entryPointName => {
externals[ '@/calderaForms' + entryPointName ] = {
this: [ 'calderaForms', entryPointName ]
}
} );
// Define WordPress dependencies
const wpDependencies = [ 'components', 'element', 'blocks', 'utils', 'date', 'data', 'editor' ];
// Setup externals for all WordPress dependencies
wpDependencies.forEach( wpDependency => {
externals[ '@wordpress/' + wpDependency ] = {
this: [ 'wp', wpDependency ]
};
});
// Start of main webpack config
const config = {
// Go through each entry point and prepare for use with externals
entry: entryPointNames.reduce( ( memo, entryPointName ) => {
memo[ entryPointName ] = './clients/' + entryPointName + '/index.js';
return memo;
}, {} ),
// Include externals
externals,
// Set output
output: {
// Place all bundles JS into build folder in current directory
filename: 'clients/[name]/build/index.min.js',
path: __dirname,
library: [ 'calderaForms', '[name]' ],
libraryTarget: 'this'
},
// Fall back to node_modules for file resolution
resolve: {
extensions: ['.js', '.vue', '.css', '.json'],
modules: [ __dirname, 'node_modules' ]
},
module: {
rules: [
//Compile Vue single file templates
{
test: /\.vue$/,
loader: 'vue-loader',
exclude: /(node_modules|bower_components)/,
query: {
presets: ['es2015']
}
},
{
// Run JavaScript files through Babel
test: /\.js$/,
exclude: /(node_modules|clients\/editor)/,
use: 'babel-loader'
},
{
// Setup SASS (and CSS) to be extracted
test: /\.s?css$/,
use: cssExtractTextPlugin.extract( extractConfig )
}
]
},
plugins: [
// Setup environment conditions
new webpack.DefinePlugin( {
'process.env.NODE_ENV': JSON.stringify(
process.env.NODE_ENV || 'development'
)
} ),
// Pull in cssExtractTextPlugin settings
cssExtractTextPlugin,
// For migrations from webpack 1 to webpack 2+
new webpack.LoaderOptionsPlugin( {
minimize: process.env.NODE_ENV === 'production',
debug: process.env.NODE_ENV !== 'production'
} ),
new webpack.ProvidePlugin({
jQuery: 'jquery',
}),
new webpack.LoaderOptionsPlugin(
_.loadersOptions()
)
],
// Do not include information about children in stats
stats: {
children: false
}
};
switch ( process.env.NODE_ENV ) {
case 'production':
// Minify JavaScript when in production
config.plugins.push( new webpack.optimize.UglifyJsPlugin() );
break;
default:
// Apply source mapping when not in production
config.devtool = 'source-map';
}
module.exports = config;