Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102346924
JsonpTemplatePlugin.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Feb 19, 18:11
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Feb 21, 18:11 (2 d)
Engine
blob
Format
Raw Data
Handle
24335769
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
JsonpTemplatePlugin.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const ArrayPushCallbackChunkFormatPlugin = require("../javascript/ArrayPushCallbackChunkFormatPlugin");
const EnableChunkLoadingPlugin = require("../javascript/EnableChunkLoadingPlugin");
const JsonpChunkLoadingRuntimeModule = require("./JsonpChunkLoadingRuntimeModule");
/** @typedef {import("../Chunk")} Chunk */
/** @typedef {import("../Compilation")} Compilation */
/** @typedef {import("../Compiler")} Compiler */
class JsonpTemplatePlugin {
/**
* @deprecated use JsonpChunkLoadingRuntimeModule.getCompilationHooks instead
* @param {Compilation} compilation the compilation
* @returns {JsonpChunkLoadingRuntimeModule.JsonpCompilationPluginHooks} hooks
*/
static getCompilationHooks(compilation) {
return JsonpChunkLoadingRuntimeModule.getCompilationHooks(compilation);
}
/**
* Apply the plugin
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
apply(compiler) {
compiler.options.output.chunkLoading = "jsonp";
new ArrayPushCallbackChunkFormatPlugin().apply(compiler);
new EnableChunkLoadingPlugin("jsonp").apply(compiler);
}
}
module.exports = JsonpTemplatePlugin;
Event Timeline
Log In to Comment