package.lib.dependencies.AMDRuntimeModules.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webpack Show documentation
Show all versions of webpack Show documentation
Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.
The newest version!
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
const RuntimeGlobals = require("../RuntimeGlobals");
const RuntimeModule = require("../RuntimeModule");
const Template = require("../Template");
class AMDDefineRuntimeModule extends RuntimeModule {
constructor() {
super("amd define");
}
/**
* @returns {string | null} runtime code
*/
generate() {
return Template.asString([
`${RuntimeGlobals.amdDefine} = function () {`,
Template.indent("throw new Error('define cannot be used indirect');"),
"};"
]);
}
}
class AMDOptionsRuntimeModule extends RuntimeModule {
/**
* @param {Record} options the AMD options
*/
constructor(options) {
super("amd options");
this.options = options;
}
/**
* @returns {string | null} runtime code
*/
generate() {
return Template.asString([
`${RuntimeGlobals.amdOptions} = ${JSON.stringify(this.options)};`
]);
}
}
exports.AMDDefineRuntimeModule = AMDDefineRuntimeModule;
exports.AMDOptionsRuntimeModule = AMDOptionsRuntimeModule;