-
Notifications
You must be signed in to change notification settings - Fork 838
/
Copy pathget-script-files-for-chunks.js
39 lines (32 loc) · 1.17 KB
/
get-script-files-for-chunks.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
/*
Copyright 2019 Google LLC
Use of this source code is governed by an MIT-style
license that can be found in the LICENSE file or at
https://opensource.org/licenses/MIT.
*/
const upath = require('upath');
const resolveWebpackURL = require('./resolve-webpack-url');
module.exports = (compilation, chunkNames) => {
const {chunks} = compilation.getStats().toJson({chunks: true});
const {publicPath} = compilation.options.output;
const scriptFiles = new Set();
for (const chunkName of chunkNames) {
const chunk = chunks.find((chunk) => chunk.names.includes(chunkName));
if (chunk) {
for (const file of chunk.files) {
// See https://github.com/GoogleChrome/workbox/issues/2161
if (upath.extname(file) === '.js') {
scriptFiles.add(resolveWebpackURL(publicPath, file));
}
}
} else {
compilation.warnings.push(`${chunkName} was provided to ` +
`importScriptsViaChunks, but didn't match any named chunks.`);
}
}
if (scriptFiles.size === 0) {
compilation.warnings.push(`There were no assets matching ` +
`importScriptsViaChunks: [${chunkNames}].`);
}
return Array.from(scriptFiles);
};