Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

111
node_modules/webpack/schemas/plugins/BannerPlugin.json generated vendored Normal file
View file

@ -0,0 +1,111 @@
{
"definitions": {
"BannerFunction": {
"description": "The banner as function, it will be wrapped in a comment.",
"instanceof": "Function",
"tsType": "(data: { hash?: string, chunk: import('../../lib/Chunk'), filename: string }) => string"
},
"Rule": {
"description": "Filtering rule as regex or string.",
"anyOf": [
{
"instanceof": "RegExp",
"tsType": "RegExp"
},
{
"type": "string",
"minLength": 1
}
]
},
"Rules": {
"description": "Filtering rules.",
"anyOf": [
{
"type": "array",
"items": {
"description": "A rule condition.",
"oneOf": [
{
"$ref": "#/definitions/Rule"
}
]
}
},
{
"$ref": "#/definitions/Rule"
}
]
}
},
"title": "BannerPluginArgument",
"anyOf": [
{
"description": "The banner as string, it will be wrapped in a comment.",
"type": "string",
"minLength": 1
},
{
"title": "BannerPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"banner": {
"description": "Specifies the banner.",
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/BannerFunction"
}
]
},
"entryOnly": {
"description": "If true, the banner will only be added to the entry chunks.",
"type": "boolean"
},
"exclude": {
"description": "Exclude all modules matching any of these conditions.",
"oneOf": [
{
"$ref": "#/definitions/Rules"
}
]
},
"footer": {
"description": "If true, banner will be placed at the end of the output.",
"type": "boolean"
},
"include": {
"description": "Include all modules matching any of these conditions.",
"oneOf": [
{
"$ref": "#/definitions/Rules"
}
]
},
"raw": {
"description": "If true, banner will not be wrapped in a comment.",
"type": "boolean"
},
"stage": {
"description": "Specifies the banner.",
"type": "number"
},
"test": {
"description": "Include all modules that pass test assertion.",
"oneOf": [
{
"$ref": "#/definitions/Rules"
}
]
}
},
"required": ["banner"]
},
{
"$ref": "#/definitions/BannerFunction"
}
]
}

36
node_modules/webpack/schemas/plugins/DllPlugin.json generated vendored Normal file
View file

@ -0,0 +1,36 @@
{
"title": "DllPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"context": {
"description": "Context of requests in the manifest file (defaults to the webpack context).",
"type": "string",
"minLength": 1
},
"entryOnly": {
"description": "If true, only entry points will be exposed (default: true).",
"type": "boolean"
},
"format": {
"description": "If true, manifest json file (output) will be formatted.",
"type": "boolean"
},
"name": {
"description": "Name of the exposed dll function (external name, use value of 'output.library').",
"type": "string",
"minLength": 1
},
"path": {
"description": "Absolute path to the manifest json file (output).",
"type": "string",
"minLength": 1
},
"type": {
"description": "Type of the dll bundle (external type, use value of 'output.libraryTarget').",
"type": "string",
"minLength": 1
}
},
"required": ["path"]
}

View file

@ -0,0 +1,206 @@
{
"definitions": {
"DllReferencePluginOptionsContent": {
"description": "The mappings from request to module info.",
"type": "object",
"additionalProperties": {
"description": "Module info.",
"type": "object",
"additionalProperties": false,
"properties": {
"buildMeta": {
"description": "Meta information about the module.",
"type": "object"
},
"exports": {
"description": "Information about the provided exports of the module.",
"anyOf": [
{
"description": "List of provided exports of the module.",
"type": "array",
"items": {
"description": "Name of the export.",
"type": "string",
"minLength": 1
}
},
{
"description": "Exports unknown/dynamic.",
"enum": [true]
}
]
},
"id": {
"description": "Module ID.",
"anyOf": [
{
"type": "number"
},
{
"type": "string",
"minLength": 1
}
]
}
},
"required": ["id"]
},
"minProperties": 1
},
"DllReferencePluginOptionsManifest": {
"description": "An object containing content, name and type.",
"type": "object",
"additionalProperties": false,
"properties": {
"content": {
"description": "The mappings from request to module info.",
"oneOf": [
{
"$ref": "#/definitions/DllReferencePluginOptionsContent"
}
]
},
"name": {
"description": "The name where the dll is exposed (external name).",
"type": "string",
"minLength": 1
},
"type": {
"description": "The type how the dll is exposed (external type).",
"oneOf": [
{
"$ref": "#/definitions/DllReferencePluginOptionsSourceType"
}
]
}
},
"required": ["content"]
},
"DllReferencePluginOptionsSourceType": {
"description": "The type how the dll is exposed (external type).",
"enum": [
"var",
"assign",
"this",
"window",
"global",
"commonjs",
"commonjs2",
"commonjs-module",
"amd",
"amd-require",
"umd",
"umd2",
"jsonp",
"system"
]
}
},
"title": "DllReferencePluginOptions",
"anyOf": [
{
"type": "object",
"additionalProperties": false,
"properties": {
"context": {
"description": "Context of requests in the manifest (or content property) as absolute path.",
"type": "string",
"absolutePath": true
},
"extensions": {
"description": "Extensions used to resolve modules in the dll bundle (only used when using 'scope').",
"type": "array",
"items": {
"description": "An extension.",
"type": "string"
}
},
"manifest": {
"description": "An object containing content and name or a string to the absolute path of the JSON manifest to be loaded upon compilation.",
"anyOf": [
{
"type": "string",
"absolutePath": true
},
{
"$ref": "#/definitions/DllReferencePluginOptionsManifest"
}
]
},
"name": {
"description": "The name where the dll is exposed (external name, defaults to manifest.name).",
"type": "string",
"minLength": 1
},
"scope": {
"description": "Prefix which is used for accessing the content of the dll.",
"type": "string",
"minLength": 1
},
"sourceType": {
"description": "How the dll is exposed (libraryTarget, defaults to manifest.type).",
"oneOf": [
{
"$ref": "#/definitions/DllReferencePluginOptionsSourceType"
}
]
},
"type": {
"description": "The way how the export of the dll bundle is used.",
"enum": ["require", "object"]
}
},
"required": ["manifest"]
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"content": {
"description": "The mappings from request to module info.",
"oneOf": [
{
"$ref": "#/definitions/DllReferencePluginOptionsContent"
}
]
},
"context": {
"description": "Context of requests in the manifest (or content property) as absolute path.",
"type": "string",
"absolutePath": true
},
"extensions": {
"description": "Extensions used to resolve modules in the dll bundle (only used when using 'scope').",
"type": "array",
"items": {
"description": "An extension.",
"type": "string"
}
},
"name": {
"description": "The name where the dll is exposed (external name).",
"type": "string",
"minLength": 1
},
"scope": {
"description": "Prefix which is used for accessing the content of the dll.",
"type": "string",
"minLength": 1
},
"sourceType": {
"description": "How the dll is exposed (libraryTarget).",
"oneOf": [
{
"$ref": "#/definitions/DllReferencePluginOptionsSourceType"
}
]
},
"type": {
"description": "The way how the export of the dll bundle is used.",
"enum": ["require", "object"]
}
},
"required": ["content", "name"]
}
]
}

View file

@ -0,0 +1,44 @@
{
"definitions": {
"HashFunction": {
"description": "Algorithm used for generation the hash (see node.js crypto package).",
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"instanceof": "Function",
"tsType": "typeof import('../../lib/util/Hash')"
}
]
}
},
"title": "HashedModuleIdsPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"context": {
"description": "The context directory for creating names.",
"type": "string",
"absolutePath": true
},
"hashDigest": {
"description": "The encoding to use when generating the hash, defaults to 'base64'. All encodings from Node.JS' hash.digest are supported.",
"enum": ["hex", "latin1", "base64"]
},
"hashDigestLength": {
"description": "The prefix length of the hash digest to use, defaults to 4.",
"type": "number",
"minimum": 1
},
"hashFunction": {
"description": "The hashing algorithm to use, defaults to 'md4'. All functions from Node.JS' crypto.createHash are supported.",
"oneOf": [
{
"$ref": "#/definitions/HashFunction"
}
]
}
}
}

34
node_modules/webpack/schemas/plugins/IgnorePlugin.json generated vendored Normal file
View file

@ -0,0 +1,34 @@
{
"title": "IgnorePluginOptions",
"anyOf": [
{
"type": "object",
"additionalProperties": false,
"properties": {
"contextRegExp": {
"description": "A RegExp to test the context (directory) against.",
"instanceof": "RegExp",
"tsType": "RegExp"
},
"resourceRegExp": {
"description": "A RegExp to test the request against.",
"instanceof": "RegExp",
"tsType": "RegExp"
}
},
"required": ["resourceRegExp"]
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"checkResource": {
"description": "A filter function for resource and context.",
"instanceof": "Function",
"tsType": "((resource: string, context: string) => boolean)"
}
},
"required": ["checkResource"]
}
]
}

View file

@ -0,0 +1,27 @@
{
"title": "LoaderOptionsPluginOptions",
"type": "object",
"additionalProperties": true,
"properties": {
"debug": {
"description": "Whether loaders should be in debug mode or not. debug will be removed as of webpack 3.",
"type": "boolean"
},
"minimize": {
"description": "Where loaders can be switched to minimize mode.",
"type": "boolean"
},
"options": {
"description": "A configuration object that can be used to configure older loaders.",
"type": "object",
"additionalProperties": true,
"properties": {
"context": {
"description": "The context that can be used to configure older loaders.",
"type": "string",
"absolutePath": true
}
}
}
}
}

View file

@ -0,0 +1,65 @@
{
"definitions": {
"HandlerFunction": {
"description": "Function that executes for every progress step.",
"instanceof": "Function",
"tsType": "((percentage: number, msg: string, ...args: string[]) => void)"
},
"ProgressPluginOptions": {
"description": "Options object for the ProgressPlugin.",
"type": "object",
"additionalProperties": false,
"properties": {
"activeModules": {
"description": "Show active modules count and one active module in progress message.",
"type": "boolean"
},
"dependencies": {
"description": "Show dependencies count in progress message.",
"type": "boolean"
},
"dependenciesCount": {
"description": "Minimum dependencies count to start with. For better progress calculation. Default: 10000.",
"type": "number"
},
"entries": {
"description": "Show entries count in progress message.",
"type": "boolean"
},
"handler": {
"description": "Function that executes for every progress step.",
"oneOf": [
{
"$ref": "#/definitions/HandlerFunction"
}
]
},
"modules": {
"description": "Show modules count in progress message.",
"type": "boolean"
},
"modulesCount": {
"description": "Minimum modules count to start with. For better progress calculation. Default: 5000.",
"type": "number"
},
"percentBy": {
"description": "Collect percent algorithm. By default it calculates by a median from modules, entries and dependencies percent.",
"enum": ["entries", "modules", "dependencies", null]
},
"profile": {
"description": "Collect profile data for progress steps. Default: false.",
"enum": [true, false, null]
}
}
}
},
"title": "ProgressPluginArgument",
"anyOf": [
{
"$ref": "#/definitions/ProgressPluginOptions"
},
{
"$ref": "#/definitions/HandlerFunction"
}
]
}

View file

@ -0,0 +1,147 @@
{
"definitions": {
"rule": {
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
"anyOf": [
{
"instanceof": "RegExp",
"tsType": "RegExp"
},
{
"type": "string",
"minLength": 1
}
]
},
"rules": {
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
"anyOf": [
{
"type": "array",
"items": {
"description": "A rule condition.",
"oneOf": [
{
"$ref": "#/definitions/rule"
}
]
}
},
{
"$ref": "#/definitions/rule"
}
]
}
},
"title": "SourceMapDevToolPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"append": {
"description": "Appends the given value to the original asset. Usually the #sourceMappingURL comment. [url] is replaced with a URL to the source map file. false disables the appending.",
"anyOf": [
{
"description": "Append no SourceMap comment to the bundle, but still generate SourceMaps.",
"enum": [false, null]
},
{
"type": "string",
"minLength": 1
},
{
"instanceof": "Function",
"tsType": "((pathData: import(\"../../lib/Compilation\").PathData, assetInfo?: import(\"../../lib/Compilation\").AssetInfo) => string)"
}
]
},
"columns": {
"description": "Indicates whether column mappings should be used (defaults to true).",
"type": "boolean"
},
"exclude": {
"description": "Exclude modules that match the given value from source map generation.",
"oneOf": [
{
"$ref": "#/definitions/rules"
}
]
},
"fallbackModuleFilenameTemplate": {
"description": "Generator string or function to create identifiers of modules for the 'sources' array in the SourceMap used only if 'moduleFilenameTemplate' would result in a conflict.",
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"description": "Custom function generating the identifier.",
"instanceof": "Function",
"tsType": "Function"
}
]
},
"fileContext": {
"description": "Path prefix to which the [file] placeholder is relative to.",
"type": "string"
},
"filename": {
"description": "Defines the output filename of the SourceMap (will be inlined if no value is provided).",
"anyOf": [
{
"description": "Disable separate SourceMap file and inline SourceMap as DataUrl.",
"enum": [false, null]
},
{
"type": "string",
"absolutePath": false,
"minLength": 1
}
]
},
"include": {
"description": "Include source maps for module paths that match the given value.",
"oneOf": [
{
"$ref": "#/definitions/rules"
}
]
},
"module": {
"description": "Indicates whether SourceMaps from loaders should be used (defaults to true).",
"type": "boolean"
},
"moduleFilenameTemplate": {
"description": "Generator string or function to create identifiers of modules for the 'sources' array in the SourceMap.",
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"description": "Custom function generating the identifier.",
"instanceof": "Function",
"tsType": "Function"
}
]
},
"namespace": {
"description": "Namespace prefix to allow multiple webpack roots in the devtools.",
"type": "string"
},
"noSources": {
"description": "Omit the 'sourceContents' array from the SourceMap.",
"type": "boolean"
},
"publicPath": {
"description": "Provide a custom public path for the SourceMapping comment.",
"type": "string"
},
"sourceRoot": {
"description": "Provide a custom value for the 'sourceRoot' property in the SourceMap.",
"type": "string"
},
"test": {
"$ref": "#/definitions/rules"
}
}
}

View file

@ -0,0 +1,25 @@
{
"title": "WatchIgnorePluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"paths": {
"description": "A list of RegExps or absolute paths to directories or files that should be ignored.",
"type": "array",
"items": {
"description": "RegExp or absolute path to directories or files that should be ignored.",
"anyOf": [
{
"instanceof": "RegExp",
"tsType": "RegExp"
},
{
"type": "string"
}
]
},
"minItems": 1
}
},
"required": ["paths"]
}

View file

@ -0,0 +1,12 @@
{
"title": "ProfilingPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"outputPath": {
"description": "Path to the output file e.g. `path.resolve(__dirname, 'profiling/events.json')`. Defaults to `events.json`.",
"type": "string",
"absolutePath": true
}
}
}

View file

@ -0,0 +1,23 @@
{
"title": "AggressiveSplittingPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"chunkOverhead": {
"description": "Extra cost for each chunk (Default: 9.8kiB).",
"type": "number"
},
"entryChunkMultiplicator": {
"description": "Extra cost multiplicator for entry chunks (Default: 10).",
"type": "number"
},
"maxSize": {
"description": "Byte, max size of per file (Default: 50kiB).",
"type": "number"
},
"minSize": {
"description": "Byte, split point. (Default: 30kiB).",
"type": "number"
}
}
}

View file

@ -0,0 +1,21 @@
{
"title": "LimitChunkCountPluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"chunkOverhead": {
"description": "Constant overhead for a chunk.",
"type": "number"
},
"entryChunkMultiplicator": {
"description": "Multiplicator for initial chunks.",
"type": "number"
},
"maxChunks": {
"description": "Limit the maximum number of chunks using a value greater greater than or equal to 1.",
"type": "number",
"minimum": 1
}
},
"required": ["maxChunks"]
}

View file

@ -0,0 +1,20 @@
{
"title": "MinChunkSizePluginOptions",
"type": "object",
"additionalProperties": false,
"properties": {
"chunkOverhead": {
"description": "Constant overhead for a chunk.",
"type": "number"
},
"entryChunkMultiplicator": {
"description": "Multiplicator for initial chunks.",
"type": "number"
},
"minChunkSize": {
"description": "Minimum number of characters.",
"type": "number"
}
},
"required": ["minChunkSize"]
}