настройка webpack
This commit is contained in:
21
node_modules/webpack/lib/dependencies/ContextElementDependency.js
generated
vendored
Normal file
21
node_modules/webpack/lib/dependencies/ContextElementDependency.js
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
"use strict";
|
||||
const ModuleDependency = require("./ModuleDependency");
|
||||
|
||||
class ContextElementDependency extends ModuleDependency {
|
||||
constructor(request, userRequest) {
|
||||
super(request);
|
||||
if (userRequest) {
|
||||
this.userRequest = userRequest;
|
||||
}
|
||||
}
|
||||
|
||||
get type() {
|
||||
return "context element";
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = ContextElementDependency;
|
||||
Reference in New Issue
Block a user