123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- 'use strict';
- Object.freeze({});
- /**
- * Make a map and return a function for checking if a key
- * is in that map.
- */
- function makeMap(str, expectsLowerCase) {
- const map = Object.create(null);
- const list = str.split(',');
- for (let i = 0; i < list.length; i++) {
- map[list[i]] = true;
- }
- return expectsLowerCase ? val => map[val.toLowerCase()] : val => map[val];
- }
- /**
- * Check if a tag is a built-in tag.
- */
- makeMap('slot,component', true);
- /**
- * Check if an attribute is a reserved attribute.
- */
- makeMap('key,ref,slot,slot-scope,is');
- makeMap('accept,accept-charset,accesskey,action,align,alt,async,autocomplete,' +
- 'autofocus,autoplay,autosave,bgcolor,border,buffered,challenge,charset,' +
- 'checked,cite,class,code,codebase,color,cols,colspan,content,' +
- 'contenteditable,contextmenu,controls,coords,data,datetime,default,' +
- 'defer,dir,dirname,disabled,download,draggable,dropzone,enctype,for,' +
- 'form,formaction,headers,height,hidden,high,href,hreflang,http-equiv,' +
- 'icon,id,ismap,itemprop,keytype,kind,label,lang,language,list,loop,low,' +
- 'manifest,max,maxlength,media,method,GET,POST,min,multiple,email,file,' +
- 'muted,name,novalidate,open,optimum,pattern,ping,placeholder,poster,' +
- 'preload,radiogroup,readonly,rel,required,reversed,rows,rowspan,sandbox,' +
- 'scope,scoped,seamless,selected,shape,size,type,text,password,sizes,span,' +
- 'spellcheck,src,srcdoc,srclang,srcset,start,step,style,summary,tabindex,' +
- 'target,title,usemap,value,width,wrap');
- const isJS = (file) => /\.js(\?[^.]+)?$/.test(file);
- const { red, yellow } = require('chalk');
- const webpack = require('webpack');
- const prefix = `[vue-server-renderer-webpack-plugin]`;
- const warn = (exports.warn = msg => console.error(red(`${prefix} ${msg}\n`)));
- const tip = (exports.tip = msg => console.log(yellow(`${prefix} ${msg}\n`)));
- const isWebpack5 = !!(webpack.version && webpack.version[0] > 4);
- const validate = compiler => {
- if (compiler.options.target !== 'node') {
- warn('webpack config `target` should be "node".');
- }
- if (compiler.options.output) {
- if (compiler.options.output.library) {
- // Webpack >= 5.0.0
- if (compiler.options.output.library.type !== 'commonjs2') {
- warn('webpack config `output.library.type` should be "commonjs2".');
- }
- }
- else if (compiler.options.output.libraryTarget !== 'commonjs2') {
- // Webpack < 5.0.0
- warn('webpack config `output.libraryTarget` should be "commonjs2".');
- }
- }
- if (!compiler.options.externals) {
- tip('It is recommended to externalize dependencies in the server build for ' +
- 'better build performance.');
- }
- };
- const onEmit = (compiler, name, stageName, hook) => {
- if (isWebpack5) {
- // Webpack >= 5.0.0
- compiler.hooks.compilation.tap(name, compilation => {
- if (compilation.compiler !== compiler) {
- // Ignore child compilers
- return;
- }
- const stage = webpack.Compilation[stageName];
- compilation.hooks.processAssets.tapAsync({ name, stage }, (assets, cb) => {
- hook(compilation, cb);
- });
- });
- }
- else if (compiler.hooks) {
- // Webpack >= 4.0.0
- compiler.hooks.emit.tapAsync(name, hook);
- }
- else {
- // Webpack < 4.0.0
- compiler.plugin('emit', hook);
- }
- };
- const getAssetName = asset => {
- if (typeof asset === 'string') {
- return asset;
- }
- return asset.name;
- };
- class VueSSRServerPlugin {
- constructor(options = {}) {
- //@ts-expect-error
- this.options = Object.assign({
- filename: 'vue-ssr-server-bundle.json'
- }, options);
- }
- apply(compiler) {
- validate(compiler);
- const stage = 'PROCESS_ASSETS_STAGE_OPTIMIZE_TRANSFER';
- onEmit(compiler, 'vue-server-plugin', stage, (compilation, cb) => {
- const stats = compilation.getStats().toJson();
- const entryName = Object.keys(stats.entrypoints)[0];
- const entryInfo = stats.entrypoints[entryName];
- if (!entryInfo) {
- // #5553
- return cb();
- }
- const entryAssets = entryInfo.assets.map(getAssetName).filter(isJS);
- if (entryAssets.length > 1) {
- throw new Error(`Server-side bundle should have one single entry file. ` +
- `Avoid using CommonsChunkPlugin in the server config.`);
- }
- const entry = entryAssets[0];
- if (!entry || typeof entry !== 'string') {
- throw new Error(`Entry "${entryName}" not found. Did you specify the correct entry option?`);
- }
- const bundle = {
- entry,
- files: {},
- maps: {}
- };
- Object.keys(compilation.assets).forEach(name => {
- if (isJS(name)) {
- bundle.files[name] = compilation.assets[name].source();
- }
- else if (name.match(/\.js\.map$/)) {
- bundle.maps[name.replace(/\.map$/, '')] = JSON.parse(compilation.assets[name].source());
- }
- // do not emit anything else for server
- delete compilation.assets[name];
- });
- const json = JSON.stringify(bundle, null, 2);
- //@ts-expect-error
- const filename = this.options.filename;
- compilation.assets[filename] = {
- source: () => json,
- size: () => json.length
- };
- cb();
- });
- }
- }
- module.exports = VueSSRServerPlugin;
|