first commit
This commit is contained in:
33
app_vue/node_modules/webpack/lib/container/RemoteToExternalDependency.js
generated
vendored
Normal file
33
app_vue/node_modules/webpack/lib/container/RemoteToExternalDependency.js
generated
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
|
||||
"use strict";
|
||||
|
||||
const ModuleDependency = require("../dependencies/ModuleDependency");
|
||||
const makeSerializable = require("../util/makeSerializable");
|
||||
|
||||
class RemoteToExternalDependency extends ModuleDependency {
|
||||
/**
|
||||
* @param {string} request request
|
||||
*/
|
||||
constructor(request) {
|
||||
super(request);
|
||||
}
|
||||
|
||||
get type() {
|
||||
return "remote to external";
|
||||
}
|
||||
|
||||
get category() {
|
||||
return "esm";
|
||||
}
|
||||
}
|
||||
|
||||
makeSerializable(
|
||||
RemoteToExternalDependency,
|
||||
"webpack/lib/container/RemoteToExternalDependency"
|
||||
);
|
||||
|
||||
module.exports = RemoteToExternalDependency;
|
Reference in New Issue
Block a user