@smoud/playable-scripts
Version:
Accelerate HTML5 playable ad development and production across different ad networks, with a single tool, which offering both a streamlined CLI and a flexible API.
35 lines (30 loc) • 1.03 kB
JavaScript
const HtmlWebpackPlugin = require('html-webpack-plugin');
/**
* Webpack plugin that injects a custom debugger script into the HTML head
* @implements {import('webpack').WebpackPluginInstance}
*/
class DebuggerInjectionPlugin {
/**
* @param {string} debuggerSrc - URL of the debugger script to inject
*/
constructor(debuggerSrc) {
this.debuggerSrc = debuggerSrc;
}
apply(compiler) {
compiler.hooks.compilation.tap('DebuggerInjectionPlugin', (compilation) => {
HtmlWebpackPlugin.getHooks(compilation).alterAssetTagGroups.tapAsync('DebuggerInjectionPlugin', (data, callback) => {
data.headTags.splice(0, 0, {
tagName: 'script',
voidTag: false,
meta: { plugin: 'html-inline-script-webpack-plugin' },
attributes: {
src: this.debuggerSrc,
type: 'text/javascript'
}
});
callback(null, data);
});
});
}
}
exports.DebuggerInjectionPlugin = DebuggerInjectionPlugin;