forked from phase2/particle
-
Notifications
You must be signed in to change notification settings - Fork 10
/
particle.js
107 lines (98 loc) · 3.2 KB
/
particle.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
/**
* Particle app to merge webpack config.
*/
const path = require('path');
// Library Imports
const merge = require('webpack-merge');
// Plugins:production
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
// Constants
// NODE_ENV is set within all NPM scripts before running webpack, eg:
//
// "NODE_ENV='development' webpack-dev-server --config ./apps/pl/webpack.config.js --hot",
//
// NODE_ENV is either:
// - development
// - production
const { NODE_ENV } = process.env;
const particleBase = require('./webpack.particle');
/**
* CSS modes are import to frontend dev. Particle currently supports hot
* reloading or full css file extraction.
*/
const cssModes = {
// 'hot' uses the style-loader plugin which rewrites CSS inline via
// webpack-dev-server and is purely development-mode ONLY. style-loader
// CANNOT exists alongside MiniCsExtractPlugin
hot: {
// Webpack for hot starts here
module: {
rules: [
{
test: /\.css$/,
use: [{ loader: 'style-loader' }, { loader: 'vue-style-loader' }],
},
],
},
},
// 'extract' uses MiniCssExtractPlugin.loader to write out actual CSS files to
// the filesystem. This is useful for production builds, and webpack --watch
extract: {
// Webpack for extract starts here
module: {
rules: [
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: { publicPath: './' },
},
],
},
],
},
plugins: [
new MiniCssExtractPlugin({
filename: '[name].styles.css',
chunkFilename: '[id].css',
}),
],
},
};
/**
* Every app using Particle must run its config through this "particle"
* function to ensure it adheres to Particle standards of dev/prod config.
*
* @param {Object} appWebpack - The collection of shared, dev, prod webpack config
* @param {Object} appWebpack.shared - Shared webpack config common to dev and prod
* @param {Object} appWebpack.dev - Webpack config unique to dev
* @param {Object} appWebpack.prod - Webpack config unique to prod
* @param {Object} appConfig - Full app config
* @param {Object} options - Compile options
* @param {('hot'|'extract')} options.cssMode - The method of handling CSS output
* @returns {*} - Fully merged and customized webpack config
*/
const particle = (appWebpack, appConfig, options) => {
const { shared, dev, prod } = appWebpack;
const { APP_DESIGN_SYSTEM } = appConfig;
// Dynamically pull in design system config. Must be named webpack.config.js
// eslint-disable-next-line
const dsWebpack = require(path.resolve(APP_DESIGN_SYSTEM, 'webpack.config'));
return merge.smartStrategy({
// Prepend the css style-loader vs MiniExtractTextPlugin
'module.rules.use': 'prepend',
})(
// Particle standard config
particleBase,
// What kind of CSS handling, defaults to extract
options.cssMode ? cssModes[options.cssMode] : 'extract',
// Design system-specific config
dsWebpack,
// App config shared between dev and prod modes
shared,
// App config specific to dev or prod
NODE_ENV === 'development' ? dev : prod
);
};
module.exports = particle;