This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathwebpack.config.js
130 lines (116 loc) · 3.52 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
const fs = require('fs');
const path = require('path');
const webpack = require('webpack');
const FriendlyErrorsWebpackPlugin = require('friendly-errors-webpack-plugin');
const webpackMerge = require('webpack-merge');
const defaults = require('./dist/default-config');
const markdownItConfig = require('./markdownit.config');
const IgnitePlugin = require('./dist/plugins/IgniteInjectPlugin');
const ignite = require('./dist/ignite');
const babelRc = require('./.babelrc');
const babelConfig = options =>
babelRc({
env() {
return options.mode;
}
});
const modeConfig = env =>
require(`./build-utils/webpack.config.${env.mode}`)(env);
module.exports = options => {
options = {
...defaults,
...options
};
const { ignitePlugins } = markdownItConfig.splitPlugins(options.plugins);
const docs = ignite.getPages(options);
const logoPath = options.logo ? path.join(options.src, options.logo) : null;
const logoExists = logoPath && fs.existsSync(path.resolve(logoPath));
const dest = options.dst
? path.join(path.resolve(options.dst), options.baseURL)
: null;
return webpackMerge(
{
mode: options.mode,
devtool: 'source-map',
entry: [
logoExists ? path.resolve(logoPath) : null,
path.resolve(__dirname, './src/app/index.js')
].filter(Boolean),
output: {
path: dest,
publicPath: options.baseURL
},
resolve: {
alias: {
ignite: path.resolve(__dirname, './src/app/index.js')
}
},
module: {
rules: [
// Markdown
{
test: /\.md$/,
use: [
{
loader: 'babel-loader',
options: babelConfig(options)
},
{
loader: path.resolve(
__dirname,
'./dist/loaders/html-to-react.js'
),
options
},
{
loader: 'markdown-it-vanilla-loader',
options: markdownItConfig.generateConfig(options.plugins)
},
{
loader: path.resolve(__dirname, './dist/loaders/hash-link.js'),
options
}
]
},
// Javascript
{
test: /\.js$/,
exclude: /node_modules\/(?!.*ignite\/src)/,
use: {
loader: 'babel-loader',
options: babelConfig(options)
}
}
]
},
plugins: [
new IgnitePlugin({
entries: docs.map(doc => path.resolve(doc)),
plugins: ignitePlugins,
options
}),
new webpack.DefinePlugin({
'process.env': {
SEARCH: JSON.stringify(options.searchIndex),
index: JSON.stringify(options.index),
baseURL: JSON.stringify(options.baseURL),
title: JSON.stringify(options.title),
githubURL: JSON.stringify(options.githubURL),
navItems: JSON.stringify(options.navItems),
logo: JSON.stringify(
logoExists ? path.join(options.baseURL, logoPath) : ''
),
plugins: JSON.stringify(options.plugins)
}
}),
options.log &&
new FriendlyErrorsWebpackPlugin({
clearConsole: options.mode !== 'production',
compilationSuccessInfo: options.compilationSuccessInfo
}),
...options.webpackPlugins
].filter(Boolean)
},
modeConfig(options)
);
};