Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
92
Frontend-Learner/node_modules/unplugin/dist/context-D7WFmOmt.cjs
generated
vendored
Normal file
92
Frontend-Learner/node_modules/unplugin/dist/context-D7WFmOmt.cjs
generated
vendored
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
const require_context = require('./context-CQfDPcdE.cjs');
|
||||
let node_path = require("node:path");
|
||||
node_path = require_context.__toESM(node_path);
|
||||
let node_buffer = require("node:buffer");
|
||||
node_buffer = require_context.__toESM(node_buffer);
|
||||
let node_process = require("node:process");
|
||||
node_process = require_context.__toESM(node_process);
|
||||
let node_module = require("node:module");
|
||||
node_module = require_context.__toESM(node_module);
|
||||
|
||||
//#region src/webpack/context.ts
|
||||
function contextOptionsFromCompilation(compilation) {
|
||||
return {
|
||||
addWatchFile(file) {
|
||||
(compilation.fileDependencies ?? compilation.compilationDependencies).add(file);
|
||||
},
|
||||
getWatchFiles() {
|
||||
return Array.from(compilation.fileDependencies ?? compilation.compilationDependencies);
|
||||
}
|
||||
};
|
||||
}
|
||||
const require$1 = (0, node_module.createRequire)(require("url").pathToFileURL(__filename).href);
|
||||
function getSource(fileSource) {
|
||||
return new (require$1("webpack")).sources.RawSource(typeof fileSource === "string" ? fileSource : node_buffer.Buffer.from(fileSource.buffer));
|
||||
}
|
||||
function createBuildContext(options, compiler, compilation, loaderContext, inputSourceMap) {
|
||||
return {
|
||||
parse: require_context.parse,
|
||||
addWatchFile(id) {
|
||||
options.addWatchFile((0, node_path.resolve)(node_process.default.cwd(), id));
|
||||
},
|
||||
emitFile(emittedFile) {
|
||||
const outFileName = emittedFile.fileName || emittedFile.name;
|
||||
if (emittedFile.source && outFileName) {
|
||||
if (!compilation) throw new Error("unplugin/webpack: emitFile outside supported hooks (buildStart, buildEnd, load, transform, watchChange)");
|
||||
compilation.emitAsset(outFileName, getSource(emittedFile.source));
|
||||
}
|
||||
},
|
||||
getWatchFiles() {
|
||||
return options.getWatchFiles();
|
||||
},
|
||||
getNativeBuildContext() {
|
||||
return {
|
||||
framework: "webpack",
|
||||
compiler,
|
||||
compilation,
|
||||
loaderContext,
|
||||
inputSourceMap
|
||||
};
|
||||
}
|
||||
};
|
||||
}
|
||||
function createContext(loader) {
|
||||
return {
|
||||
error: (error) => loader.emitError(normalizeMessage(error)),
|
||||
warn: (message) => loader.emitWarning(normalizeMessage(message))
|
||||
};
|
||||
}
|
||||
function normalizeMessage(error) {
|
||||
const err = new Error(typeof error === "string" ? error : error.message);
|
||||
if (typeof error === "object") {
|
||||
err.stack = error.stack;
|
||||
err.cause = error.meta;
|
||||
}
|
||||
return err;
|
||||
}
|
||||
|
||||
//#endregion
|
||||
Object.defineProperty(exports, 'contextOptionsFromCompilation', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return contextOptionsFromCompilation;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, 'createBuildContext', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return createBuildContext;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, 'createContext', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return createContext;
|
||||
}
|
||||
});
|
||||
Object.defineProperty(exports, 'normalizeMessage', {
|
||||
enumerable: true,
|
||||
get: function () {
|
||||
return normalizeMessage;
|
||||
}
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue