nav tabs on admin dashboard
This commit is contained in:
10
node_modules/webpack/lib/dependencies/DelegatedExportsDependency.js
generated
vendored
10
node_modules/webpack/lib/dependencies/DelegatedExportsDependency.js
generated
vendored
@@ -3,6 +3,8 @@
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
"use strict";
|
||||
|
||||
const DependencyReference = require("./DependencyReference");
|
||||
const NullDependency = require("./NullDependency");
|
||||
|
||||
class DelegatedExportsDependency extends NullDependency {
|
||||
@@ -17,15 +19,13 @@ class DelegatedExportsDependency extends NullDependency {
|
||||
}
|
||||
|
||||
getReference() {
|
||||
return {
|
||||
module: this.originModule,
|
||||
importedNames: true
|
||||
};
|
||||
return new DependencyReference(this.originModule, true, false);
|
||||
}
|
||||
|
||||
getExports() {
|
||||
return {
|
||||
exports: this.exports
|
||||
exports: this.exports,
|
||||
dependencies: undefined
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user