-
Notifications
You must be signed in to change notification settings - Fork 0
/
preact.config.js
128 lines (109 loc) · 4.2 KB
/
preact.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
import { resolve, join } from 'path';
import fs from 'fs';
import delve from 'dlv';
import CopyPlugin from 'copy-webpack-plugin';
import Critters from 'critters-webpack-plugin';
import yaml from 'yaml';
import netlifyPlugin from 'preact-cli-plugin-netlify';
import customProperties from 'postcss-custom-properties';
import SizePlugin from 'size-plugin';
// prettier-ignore
export default function (config, env, helpers) {
// aliases from before the beginning of time
Object.assign(config.resolve.alias, {
src: resolve(__dirname, 'src'),
components: resolve(__dirname, 'src/components'),
style: resolve(__dirname, 'src/style'),
lib: resolve(__dirname, 'src/lib'),
'promise-polyfill$': resolve(__dirname, 'src/promise-polyfill.js')
});
// Use our custom polyfill entry
if (!config.entry['ssr-bundle']) {
config.entry.polyfills = resolve(__dirname, 'src/polyfills.js');
}
helpers.getPluginsByName(config, 'DefinePlugin')[0].plugin.definitions.PRERENDER = String(env.ssr===true);
helpers.getPluginsByName(config, 'DefinePlugin')[0].plugin.definitions['process.env.BRANCH'] = JSON.stringify(process.env.BRANCH);
// web worker HMR requires it
config.output.globalObject = 'self';
config.module.noParse = [
/babel-standalone/
].concat(config.module.noParse || []);
const babel = helpers.getLoadersByName(config, 'babel-loader')[0].rule;
babel.exclude = [/babel-standalone/].concat(babel.exclude || []);
// something broke in less
config.module.rules.forEach(loader => {
const opts = delve(loader, 'use.0.options.options');
if (opts && opts.paths) delete opts.paths;
});
// Add CSS Custom Property fallback
const cssConfig = config.module.rules.filter(d => d.test.test('foo.less'));
cssConfig.forEach(c => {
c.use.filter(d => d.loader == 'postcss-loader').forEach(x => {
x.options.plugins.push(customProperties({ preserve: true }));
});
});
const critters = helpers.getPluginsByName(config, 'Critters')[0];
if (critters) {
config.plugins[critters.index] = new Critters({
preload: 'media',
additionalStylesheets: ['?.chunk.*.css'],
pruneSource: false,
compress: true
});
}
// Fix keyframes being minified to colliding names when using lazy-loaded CSS chunks
const optimizeCss = config.optimization && (config.optimization.minimizer || []).filter(plugin => /^OptimizeCssAssets(Webpack)?Plugin$/.test(plugin.constructor.name))[0];
if (optimizeCss) {
optimizeCss.options.cssProcessorOptions.reduceIdents = false;
}
Object.assign(config.optimization.splitChunks || (config.optimization.splitChunks = {}), {
minSize: 1000
});
const sizePlugin = helpers.getPluginsByName(config, 'SizePlugin')[0];
if (sizePlugin) {
config.plugins[sizePlugin.index] = new SizePlugin({
publish: true,
filename: `size-plugin-${env.ssr?'ssr':'browser'}.json`
});
}
if (!env.ssr) {
// Find YAML FrontMatter preceeding a markdown document
const FRONT_MATTER_REG = /^\s*---\n\s*([\s\S]*?)\s*\n---\n/i;
// Find a leading title in a markdown document
const TITLE_REG = /^\s*#\s+(.+)\n+/;
// Converts YAML FrontMatter to JSON FrontMatter for easy client-side parsing.
config.plugins.push(new CopyPlugin([{
context: __dirname,
from: 'content',
to: 'content',
transform(content, path) {
if (typeof content !== 'string') {
content = content.toString('utf8');
}
const matches = content.match(FRONT_MATTER_REG);
if (!matches) return content;
const meta = yaml.parse('---\n'+matches[1].replace(/^/gm,' ')+'\n') || {};
content = content.replace(FRONT_MATTER_REG, '');
if (!meta.title) {
let [,title] = content.match(TITLE_REG) || [];
if (title) {
content = content.replace(TITLE_REG, '');
meta.title = title;
}
}
content = '---\n' + JSON.stringify(meta) + '\n---\n' + content;
return content;
}
}, {
context: __dirname,
from: 'src/robots.txt',
to: 'robots.txt'
}]));
netlifyPlugin(config, {
redirects: fs.readFileSync('src/_redirects', 'utf-8').trim().split('\n')
});
// For some reason, webpack CopyPlugin throws an error when trying to copy this using that plugin
fs.mkdirSync(join(__dirname, 'build'), { recursive: true });
fs.copyFileSync(join(__dirname, 'src/_headers'), join(__dirname, 'build/_headers'));
}
}