-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
143 lines (134 loc) · 3.34 KB
/
webpack.config.ts
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
import * as HtmlWebpackPlugin from 'html-webpack-plugin';
import * as path from 'path';
import * as titleize from 'titleize';
import { Configuration } from 'webpack';
import { setupRoutes } from './api/index';
const DEMOS = [
'compose-pipe',
'generator-function',
'generator-task',
'async-shortcomings',
'filtering-colors'
];
const EXERCISES = [
'array-hof',
'subscribe-to-observables',
'cancelling',
'filtering-operators',
'error-recovery',
'aggregate-exercise',
'subjects',
'timing-operators',
'combining-observables',
'hot-and-cold',
'marble-tests'
];
const generateExampleInfo = (key, arr) =>
arr.map((item, idx) => {
const id = idx + 1;
return {
id,
menuLink: {
url: `/${key}/${id}-${item}/`,
text: titleize(item.replace(/\-/g, ' '))
},
html: {
template: `./src/${key}/${id}-${item}/index.hbs`,
outfile: `./${key}/${id}-${item}/index.html`
},
entry: {
name: `${key}/${id}-${item}/index`,
file: `./src/${key}/${id}-${item}/index.ts`
}
};
}, {});
const generateExampleEntries = arr =>
arr.reduce((acc, item, idx) => {
acc[item.entry.name] = item.entry.file;
return acc;
}, {});
const generateHtmlPlugins = arr =>
arr.map(
(item, idx) =>
new HtmlWebpackPlugin({
inject: true,
filename: item.html.outfile,
chunks: [item.entry.name],
template: item.html.template
}),
{}
);
const DEMO_INFO = generateExampleInfo('demo', DEMOS);
const EXERCISE_INFO = generateExampleInfo('exercise', EXERCISES);
const DEMO_ENTRIES = generateExampleEntries(DEMO_INFO);
const EXERCISE_ENTRIES = generateExampleEntries(EXERCISE_INFO);
const DEMO_HTML_PLUGINS = generateHtmlPlugins(DEMO_INFO);
const EXERCISE_HTML_PLUGINS = generateHtmlPlugins(EXERCISE_INFO);
const WEBPACK_CONFIG: Configuration = {
entry: {
index: './src/index.ts',
...EXERCISE_ENTRIES,
...DEMO_ENTRIES
},
mode: 'development',
devServer: {
before(app) {
setupRoutes(app);
}
},
module: {
rules: [
{
test: /\.(png|jpg|gif|svg)$/,
use: [
{
loader: 'file-loader',
options: {
name: '[path][name].[ext]',
context: 'src'
}
}
]
},
{
test: /\.scss$/,
use: [
{
loader: 'style-loader' // creates style nodes from JS strings
},
{
loader: 'css-loader' // translates CSS into CommonJS
},
{
loader: 'sass-loader' // compiles Sass to CSS
}
]
},
{ test: /\.(hbs|handlebars)$/, loader: 'handlebars-loader' },
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{ test: /\.tsx?$/, loader: 'ts-loader' }
]
},
output: {
// filename: '[name].js',
path: path.resolve(__dirname, 'dist')
},
plugins: [
new HtmlWebpackPlugin({
filename: 'index.html',
chunks: ['index'],
templateParameters: {
demos: DEMO_INFO,
exercises: EXERCISE_INFO
},
template: './src/index.hbs'
}),
...DEMO_HTML_PLUGINS,
...EXERCISE_HTML_PLUGINS
],
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['.ts', '.tsx', '.js', '.scss']
}
};
export = WEBPACK_CONFIG;