forked from shirotech/webpack-cdn-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.js
201 lines (171 loc) · 5.84 KB
/
module.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import path from 'path';
const empty = '';
const slash = '/';
const packageJson = 'package.json';
const paramsRegex = /:([a-z]+)/gi;
const DEFAULT_MODULE_KEY = 'defaultCdnModuleKey____';
class WebpackCdnPlugin {
constructor({
modules,
prod,
prodUrl = 'https://unpkg.com/:name@:version/:path',
devUrl = ':name/:path',
publicPath,
optimize = false,
crossOrigin = false,
}) {
this.modules = Array.isArray(modules) ? { [DEFAULT_MODULE_KEY]: modules } : modules;
this.prod = prod !== false;
this.prefix = publicPath;
this.url = this.prod ? prodUrl : devUrl;
this.optimize = optimize;
this.crossOrigin = crossOrigin;
}
apply(compiler) {
const { output } = compiler.options;
output.publicPath = output.publicPath || '/';
if (output.publicPath.slice(-1) !== slash) {
output.publicPath += slash;
}
this.prefix = this.prod ? empty : this.prefix || output.publicPath;
if (!this.prod && this.prefix.slice(-1) !== slash) {
this.prefix += slash;
}
const getArgs = [this.url, this.prefix, this.prod, output.publicPath];
compiler.hooks.compilation.tap('WebpackCdnPlugin', (compilation) => {
compilation.hooks.htmlWebpackPluginBeforeHtmlGeneration.tapAsync('WebpackCdnPlugin', (data, callback) => {
const moduleId = data.plugin.options.cdnModule;
if (moduleId !== false) {
let modules = this.modules[moduleId || Reflect.ownKeys(this.modules)[0]];
if (modules) {
if (this.optimize) {
const usedModules = WebpackCdnPlugin._getUsedModules(compilation);
modules = modules.filter(p => usedModules[p.name]);
}
WebpackCdnPlugin._cleanModules(modules);
data.assets.js = WebpackCdnPlugin._getJs(modules, ...getArgs).concat(data.assets.js);
data.assets.css = WebpackCdnPlugin._getCss(modules, ...getArgs).concat(data.assets.css);
}
}
callback(null, data);
});
});
const externals = compiler.options.externals || {};
Reflect.ownKeys(this.modules).forEach((key) => {
const mods = this.modules[key];
mods.filter((m) => !m.cssOnly).forEach((p) => {
externals[p.name] = p.var || p.name;
});
});
compiler.options.externals = externals;
if (this.prod && this.crossOrigin) {
compiler.hooks.afterPlugins.tap('WebpackCdnPlugin', compiler => {
compiler.hooks.thisCompilation.tap('WebpackCdnPlugin', () => {
compiler.hooks.compilation.tap('HtmlWebpackPluginHooks', compilation => {
compilation.hooks.htmlWebpackPluginAlterAssetTags.tapAsync('WebpackCdnPlugin', this.alterAssetTags.bind(this));
});
});
});
}
}
alterAssetTags(pluginArgs, callback) {
const filterTag = tag => {
const prefix = this.url.split('/:')[0];
const url = (tag.tagName === 'script' && tag.attributes.src) || (tag.tagName === 'link' && tag.attributes.href);
return url && url.indexOf(prefix) === 0;
};
const processTag = tag => {
tag.attributes.crossorigin = this.crossOrigin;
};
pluginArgs.head.filter(filterTag).forEach(processTag);
pluginArgs.body.filter(filterTag).forEach(processTag);
callback(null, pluginArgs);
}
/**
* Returns the version of a package
*/
static getVersion(name) {
try {
return require(path.join(WebpackCdnPlugin.node_modules, name, packageJson)).version;
} catch(e) {}
}
/**
* Returns the list of all modules in the bundle
*/
static _getUsedModules(compilation) {
let usedModules = {};
compilation.getStats().toJson().chunks.forEach(c => {
c.modules.forEach(m => {
m.reasons.forEach(r => {
usedModules[r.userRequest] = true;
});
});
});
return usedModules;
}
/**
* - populate the "version" property of each module
* - construct the "paths" and "styles" arrays
* - add a default path if none provided
*/
static _cleanModules(modules) {
modules.forEach(p => {
p.version = WebpackCdnPlugin.getVersion(p.name);
if (!p.paths) {
p.paths = [];
}
if (p.path) {
p.paths.unshift(p.path);
p.path = undefined;
}
if (p.paths.length === 0 && !p.cssOnly) {
p.paths.push(require.resolve(p.name).match(/[\\/]node_modules[\\/].+?[\\/](.*)/)[1].replace(/\\/g, '/'));
}
if (!p.styles) {
p.styles = [];
}
if (p.style) {
p.styles.unshift(p.style);
p.style = undefined;
}
});
}
/**
* Returns the list of CSS files for all modules
* It is the concatenation of "localStyle" and all "styles"
*/
static _getCss(modules, url, prefix, prod, publicPath) {
return WebpackCdnPlugin._get(modules, url, prefix, prod, publicPath, 'styles', 'localStyle');
}
/**
* Returns the list of JS files for all modules
* It is the concatenation of "localScript" and all "paths"
*/
static _getJs(modules, url, prefix, prod, publicPath) {
return WebpackCdnPlugin._get(modules, url, prefix, prod, publicPath, 'paths', 'localScript');
}
/**
* Generic method to construct the list of files
*/
static _get(modules, url, prefix, prod, publicPath, pathsKey, localKey) {
prefix = prefix || empty;
prod = prod !== false;
let files = [];
modules.filter(p => p[localKey])
.forEach(p => files.push(publicPath + p[localKey]));
modules.filter(p => p[pathsKey].length > 0)
.forEach(p => {
p[pathsKey].forEach(s => files.push(
prefix + url.replace(paramsRegex, (m, p1) => {
if (prod && p.cdn && p1 === 'name') {
return p.cdn;
}
return p1 === 'path' ? s : p[p1];
})
))
});
return files;
}
}
WebpackCdnPlugin.node_modules = path.join(process.cwd(), 'node_modules');
export default WebpackCdnPlugin;