Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
28
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.cjs
generated
vendored
Normal file
28
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.cjs
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
const require_context = require('../../context-CQfDPcdE.cjs');
|
||||
const require_webpack_like = require('../../webpack-like-DDVwPJ4e.cjs');
|
||||
const require_context$1 = require('../../context-D7WFmOmt.cjs');
|
||||
|
||||
//#region src/webpack/loaders/load.ts
|
||||
async function load(source, map) {
|
||||
const callback = this.async();
|
||||
const { plugin } = this.query;
|
||||
let id = this.resource;
|
||||
if (!plugin?.load || !id) return callback(null, source, map);
|
||||
if (id.startsWith(plugin.__virtualModulePrefix)) id = decodeURIComponent(id.slice(plugin.__virtualModulePrefix.length));
|
||||
const context = require_context$1.createContext(this);
|
||||
const { handler } = require_context.normalizeObjectHook("load", plugin.load);
|
||||
const res = await handler.call(Object.assign({}, require_context$1.createBuildContext({
|
||||
addWatchFile: (file) => {
|
||||
this.addDependency(file);
|
||||
},
|
||||
getWatchFiles: () => {
|
||||
return this.getDependencies();
|
||||
}
|
||||
}, this._compiler, this._compilation, this), context), require_webpack_like.normalizeAbsolutePath(id));
|
||||
if (res == null) callback(null, source, map);
|
||||
else if (typeof res !== "string") callback(null, res.code, res.map ?? map);
|
||||
else callback(null, res, map);
|
||||
}
|
||||
|
||||
//#endregion
|
||||
module.exports = load;
|
||||
5
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.d.cts
generated
vendored
Normal file
5
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.d.cts
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { LoaderContext } from "webpack";
|
||||
|
||||
//#region src/webpack/loaders/load.d.ts
|
||||
declare function load(this: LoaderContext<any>, source: string, map: any): Promise<void>;
|
||||
export = load;
|
||||
6
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.d.ts
generated
vendored
Normal file
6
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { LoaderContext } from "webpack";
|
||||
|
||||
//#region src/webpack/loaders/load.d.ts
|
||||
declare function load(this: LoaderContext<any>, source: string, map: any): Promise<void>;
|
||||
//#endregion
|
||||
export { load as default };
|
||||
28
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.js
generated
vendored
Normal file
28
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/load.js
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import { n as normalizeObjectHook } from "../../context-Csj9j3eN.js";
|
||||
import { t as normalizeAbsolutePath } from "../../webpack-like-DFGTNSuV.js";
|
||||
import { n as createBuildContext, r as createContext } from "../../context-OCFO8EW1.js";
|
||||
|
||||
//#region src/webpack/loaders/load.ts
|
||||
async function load(source, map) {
|
||||
const callback = this.async();
|
||||
const { plugin } = this.query;
|
||||
let id = this.resource;
|
||||
if (!plugin?.load || !id) return callback(null, source, map);
|
||||
if (id.startsWith(plugin.__virtualModulePrefix)) id = decodeURIComponent(id.slice(plugin.__virtualModulePrefix.length));
|
||||
const context = createContext(this);
|
||||
const { handler } = normalizeObjectHook("load", plugin.load);
|
||||
const res = await handler.call(Object.assign({}, createBuildContext({
|
||||
addWatchFile: (file) => {
|
||||
this.addDependency(file);
|
||||
},
|
||||
getWatchFiles: () => {
|
||||
return this.getDependencies();
|
||||
}
|
||||
}, this._compiler, this._compilation, this), context), normalizeAbsolutePath(id));
|
||||
if (res == null) callback(null, source, map);
|
||||
else if (typeof res !== "string") callback(null, res.code, res.map ?? map);
|
||||
else callback(null, res, map);
|
||||
}
|
||||
|
||||
//#endregion
|
||||
export { load as default };
|
||||
31
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.cjs
generated
vendored
Normal file
31
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.cjs
generated
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
const require_context = require('../../context-CQfDPcdE.cjs');
|
||||
const require_context$1 = require('../../context-D7WFmOmt.cjs');
|
||||
|
||||
//#region src/webpack/loaders/transform.ts
|
||||
async function transform(source, map) {
|
||||
const callback = this.async();
|
||||
const { plugin } = this.query;
|
||||
if (!plugin?.transform) return callback(null, source, map);
|
||||
const context = require_context$1.createContext(this);
|
||||
const { handler, filter } = require_context.normalizeObjectHook("transform", plugin.transform);
|
||||
if (!filter(this.resource, source)) return callback(null, source, map);
|
||||
try {
|
||||
const res = await handler.call(Object.assign({}, require_context$1.createBuildContext({
|
||||
addWatchFile: (file) => {
|
||||
this.addDependency(file);
|
||||
},
|
||||
getWatchFiles: () => {
|
||||
return this.getDependencies();
|
||||
}
|
||||
}, this._compiler, this._compilation, this, map), context), source, this.resource);
|
||||
if (res == null) callback(null, source, map);
|
||||
else if (typeof res !== "string") callback(null, res.code, map == null ? map : res.map || map);
|
||||
else callback(null, res, map);
|
||||
} catch (error) {
|
||||
if (error instanceof Error) callback(error);
|
||||
else callback(new Error(String(error)));
|
||||
}
|
||||
}
|
||||
|
||||
//#endregion
|
||||
module.exports = transform;
|
||||
5
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.d.cts
generated
vendored
Normal file
5
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.d.cts
generated
vendored
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import { LoaderContext } from "webpack";
|
||||
|
||||
//#region src/webpack/loaders/transform.d.ts
|
||||
declare function transform(this: LoaderContext<any>, source: string, map: any): Promise<void>;
|
||||
export = transform;
|
||||
6
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.d.ts
generated
vendored
Normal file
6
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
import { LoaderContext } from "webpack";
|
||||
|
||||
//#region src/webpack/loaders/transform.d.ts
|
||||
declare function transform(this: LoaderContext<any>, source: string, map: any): Promise<void>;
|
||||
//#endregion
|
||||
export { transform as default };
|
||||
31
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.js
generated
vendored
Normal file
31
Frontend-Learner/node_modules/unplugin/dist/webpack/loaders/transform.js
generated
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
import { n as normalizeObjectHook } from "../../context-Csj9j3eN.js";
|
||||
import { n as createBuildContext, r as createContext } from "../../context-OCFO8EW1.js";
|
||||
|
||||
//#region src/webpack/loaders/transform.ts
|
||||
async function transform(source, map) {
|
||||
const callback = this.async();
|
||||
const { plugin } = this.query;
|
||||
if (!plugin?.transform) return callback(null, source, map);
|
||||
const context = createContext(this);
|
||||
const { handler, filter } = normalizeObjectHook("transform", plugin.transform);
|
||||
if (!filter(this.resource, source)) return callback(null, source, map);
|
||||
try {
|
||||
const res = await handler.call(Object.assign({}, createBuildContext({
|
||||
addWatchFile: (file) => {
|
||||
this.addDependency(file);
|
||||
},
|
||||
getWatchFiles: () => {
|
||||
return this.getDependencies();
|
||||
}
|
||||
}, this._compiler, this._compilation, this, map), context), source, this.resource);
|
||||
if (res == null) callback(null, source, map);
|
||||
else if (typeof res !== "string") callback(null, res.code, map == null ? map : res.map || map);
|
||||
else callback(null, res, map);
|
||||
} catch (error) {
|
||||
if (error instanceof Error) callback(error);
|
||||
else callback(new Error(String(error)));
|
||||
}
|
||||
}
|
||||
|
||||
//#endregion
|
||||
export { transform as default };
|
||||
Loading…
Add table
Add a link
Reference in a new issue