nav tabs on admin dashboard
This commit is contained in:
22
node_modules/webpack/lib/DllModule.js
generated
vendored
22
node_modules/webpack/lib/DllModule.js
generated
vendored
@@ -4,17 +4,18 @@
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
const { RawSource } = require("webpack-sources");
|
||||
const Module = require("./Module");
|
||||
const RawSource = require("webpack-sources").RawSource;
|
||||
|
||||
/** @typedef {import("./util/createHash").Hash} Hash */
|
||||
|
||||
class DllModule extends Module {
|
||||
constructor(context, dependencies, name, type) {
|
||||
super();
|
||||
this.context = context;
|
||||
super("javascript/dynamic", context);
|
||||
|
||||
// Info from Factory
|
||||
this.dependencies = dependencies;
|
||||
this.name = name;
|
||||
this.built = false;
|
||||
this.cacheable = true;
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
@@ -26,13 +27,10 @@ class DllModule extends Module {
|
||||
return `dll ${this.name}`;
|
||||
}
|
||||
|
||||
disconnect() {
|
||||
this.built = false;
|
||||
super.disconnect();
|
||||
}
|
||||
|
||||
build(options, compilation, resolver, fs, callback) {
|
||||
this.built = true;
|
||||
this.buildMeta = {};
|
||||
this.buildInfo = {};
|
||||
return callback();
|
||||
}
|
||||
|
||||
@@ -48,6 +46,10 @@ class DllModule extends Module {
|
||||
return 12;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {Hash} hash the hash used to track dependencies
|
||||
* @returns {void}
|
||||
*/
|
||||
updateHash(hash) {
|
||||
hash.update("dll module");
|
||||
hash.update(this.name || "");
|
||||
|
||||
Reference in New Issue
Block a user