Fix code quality violations and enhance ROUTE-EXISTS-01 rule
Implement JQHTML function cache ID system and fix bundle compilation Implement underscore prefix for system tables Fix JS syntax linter to support decorators and grant exception to Task system SPA: Update planning docs and wishlists with remaining features SPA: Document Navigation API abandonment and future enhancements Implement SPA browser integration with History API (Phase 1) Convert contacts view page to SPA action Convert clients pages to SPA actions and document conversion procedure SPA: Merge GET parameters and update documentation Implement SPA route URL generation in JavaScript and PHP Implement SPA bootstrap controller architecture Add SPA routing manual page (rsx:man spa) Add SPA routing documentation to CLAUDE.md Phase 4 Complete: Client-side SPA routing implementation Update get_routes() consumers for unified route structure Complete SPA Phase 3: PHP-side route type detection and is_spa flag Restore unified routes structure and Manifest_Query class Refactor route indexing and add SPA infrastructure Phase 3 Complete: SPA route registration in manifest Implement SPA Phase 2: Extract router code and test decorators Rename Jqhtml_Component to Component and complete SPA foundation setup 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2
node_modules/webpack/schemas/WebpackOptions.check.js
generated
vendored
2
node_modules/webpack/schemas/WebpackOptions.check.js
generated
vendored
File diff suppressed because one or more lines are too long
136
node_modules/webpack/schemas/WebpackOptions.json
generated
vendored
136
node_modules/webpack/schemas/WebpackOptions.json
generated
vendored
@@ -395,6 +395,9 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"exportType": {
|
||||
"$ref": "#/definitions/CssParserExportType"
|
||||
},
|
||||
"import": {
|
||||
"$ref": "#/definitions/CssParserImport"
|
||||
},
|
||||
@@ -473,6 +476,9 @@
|
||||
"esModule": {
|
||||
"$ref": "#/definitions/CssGeneratorEsModule"
|
||||
},
|
||||
"exportType": {
|
||||
"$ref": "#/definitions/CssParserExportType"
|
||||
},
|
||||
"exportsConvention": {
|
||||
"$ref": "#/definitions/CssGeneratorExportsConvention"
|
||||
},
|
||||
@@ -489,6 +495,9 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"exportType": {
|
||||
"$ref": "#/definitions/CssParserExportType"
|
||||
},
|
||||
"import": {
|
||||
"$ref": "#/definitions/CssParserImport"
|
||||
},
|
||||
@@ -508,6 +517,9 @@
|
||||
"esModule": {
|
||||
"$ref": "#/definitions/CssGeneratorEsModule"
|
||||
},
|
||||
"exportType": {
|
||||
"$ref": "#/definitions/CssParserExportType"
|
||||
},
|
||||
"exportsConvention": {
|
||||
"$ref": "#/definitions/CssGeneratorExportsConvention"
|
||||
},
|
||||
@@ -524,6 +536,9 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"exportType": {
|
||||
"$ref": "#/definitions/CssParserExportType"
|
||||
},
|
||||
"import": {
|
||||
"$ref": "#/definitions/CssParserImport"
|
||||
},
|
||||
@@ -535,6 +550,10 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"CssParserExportType": {
|
||||
"description": "Configure how CSS content is exported as default.",
|
||||
"enum": ["link", "text", "css-style-sheet"]
|
||||
},
|
||||
"CssParserImport": {
|
||||
"description": "Enable/disable `@import` at-rules handling.",
|
||||
"type": "boolean"
|
||||
@@ -548,6 +567,9 @@
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"exportType": {
|
||||
"$ref": "#/definitions/CssParserExportType"
|
||||
},
|
||||
"import": {
|
||||
"$ref": "#/definitions/CssParserImport"
|
||||
},
|
||||
@@ -629,6 +651,63 @@
|
||||
"description": "Module namespace to use when interpolating filename template string for the sources array in a generated SourceMap. Defaults to `output.library` if not set. It's useful for avoiding runtime collisions in sourcemaps from multiple webpack projects built as libraries.",
|
||||
"type": "string"
|
||||
},
|
||||
"Dotenv": {
|
||||
"description": "Enable and configure the Dotenv plugin to load environment variables from .env files.",
|
||||
"anyOf": [
|
||||
{
|
||||
"description": "Enable Dotenv plugin with default options.",
|
||||
"type": "boolean"
|
||||
},
|
||||
{
|
||||
"$ref": "#/definitions/DotenvPluginOptions"
|
||||
}
|
||||
]
|
||||
},
|
||||
"DotenvPluginOptions": {
|
||||
"description": "Options for Dotenv plugin.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"dir": {
|
||||
"description": "The directory from which .env files are loaded. Can be an absolute path, false will disable the .env file loading.",
|
||||
"anyOf": [
|
||||
{
|
||||
"enum": [false]
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"prefix": {
|
||||
"description": "Only expose environment variables that start with these prefixes. Defaults to 'WEBPACK_'.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "A prefix that environment variables must start with to be exposed.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"template": {
|
||||
"description": "Template patterns for .env file names. Use [mode] as placeholder for the webpack mode. Defaults to ['.env', '.env.local', '.env.[mode]', '.env.[mode].local'].",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "A template pattern for .env file names.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"EmptyGeneratorOptions": {
|
||||
"description": "No generator options are supported for this module type.",
|
||||
"type": "object",
|
||||
@@ -943,6 +1022,10 @@
|
||||
"description": "The environment supports 'globalThis'.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"importMetaDirnameAndFilename": {
|
||||
"description": "The environment supports `import.meta.dirname` and `import.meta.filename`.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"module": {
|
||||
"description": "The environment supports EcmaScript Module syntax to import EcmaScript modules (import ... from '...').",
|
||||
"type": "boolean"
|
||||
@@ -1294,7 +1377,10 @@
|
||||
"import",
|
||||
"module-import",
|
||||
"script",
|
||||
"node-commonjs"
|
||||
"node-commonjs",
|
||||
"asset",
|
||||
"css-import",
|
||||
"css-url"
|
||||
]
|
||||
},
|
||||
"Falsy": {
|
||||
@@ -1375,8 +1461,7 @@
|
||||
{
|
||||
"description": "A path to an immutable directory (usually a package manager cache directory).",
|
||||
"type": "string",
|
||||
"absolutePath": true,
|
||||
"minLength": 1
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1395,8 +1480,7 @@
|
||||
{
|
||||
"description": "A path to a managed directory (usually a node_modules directory).",
|
||||
"type": "string",
|
||||
"absolutePath": true,
|
||||
"minLength": 1
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -1569,20 +1653,7 @@
|
||||
},
|
||||
"HashDigest": {
|
||||
"description": "Digest types used for the hash.",
|
||||
"enum": [
|
||||
"base64",
|
||||
"base64url",
|
||||
"hex",
|
||||
"binary",
|
||||
"utf8",
|
||||
"utf-8",
|
||||
"utf16le",
|
||||
"utf-16le",
|
||||
"latin1",
|
||||
"ascii",
|
||||
"ucs2",
|
||||
"ucs-2"
|
||||
]
|
||||
"type": "string"
|
||||
},
|
||||
"HashDigestLength": {
|
||||
"description": "Number of chars which are used for the hash.",
|
||||
@@ -1920,6 +1991,11 @@
|
||||
"description": "Override the module to strict or non-strict. This may affect the behavior of the module (some behaviors differ between strict and non-strict), so please configure this option carefully.",
|
||||
"enum": ["strict", "non-strict"]
|
||||
},
|
||||
"parse": {
|
||||
"description": "Function to parser source code.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "(import('../lib/javascript/JavascriptParser').ParseFunction)"
|
||||
},
|
||||
"reexportExportsPresence": {
|
||||
"description": "Specifies the behavior of invalid export names in \"export ... from ...\". This might be useful to disable during the migration from \"export ... from ...\" to \"export type ... from ...\" when reexporting types in TypeScript.",
|
||||
"enum": ["error", "warn", "auto", false]
|
||||
@@ -2038,6 +2114,10 @@
|
||||
"description": "The depth of json dependency flagged as `exportInfo`.",
|
||||
"type": "number"
|
||||
},
|
||||
"namedExports": {
|
||||
"description": "Allow named exports for json of object type.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"parse": {
|
||||
"description": "Function to parser content and return JSON.",
|
||||
"instanceof": "Function",
|
||||
@@ -4405,8 +4485,7 @@
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"absolutePath": true,
|
||||
"minLength": 1
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -5011,8 +5090,7 @@
|
||||
{
|
||||
"description": "A path to an immutable directory (usually a package manager cache directory).",
|
||||
"type": "string",
|
||||
"absolutePath": true,
|
||||
"minLength": 1
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -5031,8 +5109,7 @@
|
||||
{
|
||||
"description": "A path to a managed directory (usually a node_modules directory).",
|
||||
"type": "string",
|
||||
"absolutePath": true,
|
||||
"minLength": 1
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -5096,8 +5173,7 @@
|
||||
{
|
||||
"description": "A path to an unmanaged directory.",
|
||||
"type": "string",
|
||||
"absolutePath": true,
|
||||
"minLength": 1
|
||||
"absolutePath": true
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -5813,6 +5889,9 @@
|
||||
"devtool": {
|
||||
"$ref": "#/definitions/DevTool"
|
||||
},
|
||||
"dotenv": {
|
||||
"$ref": "#/definitions/Dotenv"
|
||||
},
|
||||
"entry": {
|
||||
"$ref": "#/definitions/EntryNormalized"
|
||||
},
|
||||
@@ -5963,6 +6042,9 @@
|
||||
"devtool": {
|
||||
"$ref": "#/definitions/DevTool"
|
||||
},
|
||||
"dotenv": {
|
||||
"$ref": "#/definitions/Dotenv"
|
||||
},
|
||||
"entry": {
|
||||
"$ref": "#/definitions/Entry"
|
||||
},
|
||||
|
||||
0
node_modules/webpack/schemas/plugins/BannerPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/BannerPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/DllPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/DllPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/DllReferencePlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/DllReferencePlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/IgnorePlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/IgnorePlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/LoaderOptionsPlugin.check.js
generated
vendored
Executable file → Normal file
7
node_modules/webpack/schemas/plugins/ManifestPlugin.check.d.ts
generated
vendored
Executable file
7
node_modules/webpack/schemas/plugins/ManifestPlugin.check.d.ts
generated
vendored
Executable file
@@ -0,0 +1,7 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
declare const check: (options: import("../../declarations/plugins/ManifestPlugin").ManifestPluginOptions) => boolean;
|
||||
export = check;
|
||||
6
node_modules/webpack/schemas/plugins/ManifestPlugin.check.js
generated
vendored
Normal file
6
node_modules/webpack/schemas/plugins/ManifestPlugin.check.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/*
|
||||
* This file was automatically generated.
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
const r=/^(?:[A-Za-z]:[\\/]|\\\\|\/)/;function e(t,{instancePath:i="",parentData:n,parentDataProperty:o,rootData:s=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return e.errors=[{params:{type:"object"}}],!1;{const i=0;for(const r in t)if("entrypoints"!==r&&"filename"!==r&&"filter"!==r&&"generate"!==r&&"prefix"!==r&&"serialize"!==r)return e.errors=[{params:{additionalProperty:r}}],!1;if(0===i){if(void 0!==t.entrypoints){const r=0;if("boolean"!=typeof t.entrypoints)return e.errors=[{params:{type:"boolean"}}],!1;var a=0===r}else a=!0;if(a){if(void 0!==t.filename){let i=t.filename;const n=0;if(0===n){if("string"!=typeof i)return e.errors=[{params:{type:"string"}}],!1;if(i.includes("!")||!1!==r.test(i))return e.errors=[{params:{}}],!1;if(i.length<1)return e.errors=[{params:{}}],!1}a=0===n}else a=!0;if(a){if(void 0!==t.filter){const r=0;if(!(t.filter instanceof Function))return e.errors=[{params:{}}],!1;a=0===r}else a=!0;if(a){if(void 0!==t.generate){const r=0;if(!(t.generate instanceof Function))return e.errors=[{params:{}}],!1;a=0===r}else a=!0;if(a){if(void 0!==t.prefix){const r=0;if("string"!=typeof t.prefix)return e.errors=[{params:{type:"string"}}],!1;a=0===r}else a=!0;if(a)if(void 0!==t.serialize){const r=0;if(!(t.serialize instanceof Function))return e.errors=[{params:{}}],!1;a=0===r}else a=!0}}}}}}return e.errors=null,!0}module.exports=e,module.exports.default=e;
|
||||
98
node_modules/webpack/schemas/plugins/ManifestPlugin.json
generated
vendored
Executable file
98
node_modules/webpack/schemas/plugins/ManifestPlugin.json
generated
vendored
Executable file
@@ -0,0 +1,98 @@
|
||||
{
|
||||
"definitions": {
|
||||
"ManifestEntrypoint": {
|
||||
"description": "Describes a manifest entrypoint.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"imports": {
|
||||
"description": "Contains the names of entrypoints.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "The name of file.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
},
|
||||
"parents": {
|
||||
"description": "Contains the names of parent entrypoints.",
|
||||
"type": "array",
|
||||
"items": {
|
||||
"description": "The entrypoint name.",
|
||||
"type": "string",
|
||||
"minLength": 1
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": ["imports"]
|
||||
},
|
||||
"ManifestItem": {
|
||||
"description": "Describes a manifest asset that links the emitted path to the producing asset.",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"file": {
|
||||
"description": "The path absolute URL (this indicates that the path is absolute from the server's root directory) to file.",
|
||||
"type": "string"
|
||||
},
|
||||
"src": {
|
||||
"description": "The source path relative to the context.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": ["file"]
|
||||
},
|
||||
"ManifestObject": {
|
||||
"description": "The manifest object.",
|
||||
"type": "object",
|
||||
"additionalProperties": true,
|
||||
"properties": {
|
||||
"assets": {
|
||||
"description": "Contains the names of assets.",
|
||||
"type": "object",
|
||||
"tsType": "Record<string, ManifestItem>"
|
||||
},
|
||||
"entrypoints": {
|
||||
"description": "Contains the names of entrypoints.",
|
||||
"type": "object",
|
||||
"tsType": "Record<string, ManifestEntrypoint>"
|
||||
}
|
||||
},
|
||||
"required": ["assets", "entrypoints"]
|
||||
}
|
||||
},
|
||||
"title": "ManifestPluginOptions",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"entrypoints": {
|
||||
"description": "Enables/disables generation of the entrypoints manifest section.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"filename": {
|
||||
"description": "Specifies the filename of the output file on disk. By default the plugin will emit `manifest.json` inside the 'output.path' directory.",
|
||||
"type": "string",
|
||||
"absolutePath": false,
|
||||
"minLength": 1
|
||||
},
|
||||
"filter": {
|
||||
"description": "Allows filtering the files which make up the manifest.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "(item: ManifestItem) => boolean"
|
||||
},
|
||||
"generate": {
|
||||
"description": "A function that receives the manifest object, modifies it, and returns the modified manifest.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "(manifest: ManifestObject) => ManifestObject"
|
||||
},
|
||||
"prefix": {
|
||||
"description": "Specifies a path prefix for all keys in the manifest.",
|
||||
"type": "string"
|
||||
},
|
||||
"serialize": {
|
||||
"description": "A function that receives the manifest object and returns the manifest string.",
|
||||
"instanceof": "Function",
|
||||
"tsType": "(manifest: ManifestObject) => string"
|
||||
}
|
||||
}
|
||||
}
|
||||
2
node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.js
generated
vendored
2
node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.check.js
generated
vendored
File diff suppressed because one or more lines are too long
19
node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.json
generated
vendored
19
node_modules/webpack/schemas/plugins/SourceMapDevToolPlugin.json
generated
vendored
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"definitions": {
|
||||
"rule": {
|
||||
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
|
||||
"description": "Condition used to match resource (string, RegExp or Function).",
|
||||
"anyOf": [
|
||||
{
|
||||
"instanceof": "RegExp",
|
||||
@@ -18,7 +18,7 @@
|
||||
]
|
||||
},
|
||||
"rules": {
|
||||
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
|
||||
"description": "One or multiple conditions used to match resource.",
|
||||
"anyOf": [
|
||||
{
|
||||
"type": "array",
|
||||
@@ -106,6 +106,14 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"ignoreList": {
|
||||
"description": "Decide whether to ignore source files that match the specified value in the SourceMap.",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/rules"
|
||||
}
|
||||
]
|
||||
},
|
||||
"include": {
|
||||
"description": "Include source maps for module paths that match the given value.",
|
||||
"oneOf": [
|
||||
@@ -149,7 +157,12 @@
|
||||
"type": "string"
|
||||
},
|
||||
"test": {
|
||||
"$ref": "#/definitions/rules"
|
||||
"description": "Include source maps for modules based on their extension (defaults to .js and .css).",
|
||||
"oneOf": [
|
||||
{
|
||||
"$ref": "#/definitions/rules"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
0
node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetParserOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/container/ContainerPlugin.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.check.js
generated
vendored
Executable file → Normal file
File diff suppressed because one or more lines are too long
5
node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.json
generated
vendored
5
node_modules/webpack/schemas/plugins/container/ContainerReferencePlugin.json
generated
vendored
@@ -24,7 +24,10 @@
|
||||
"import",
|
||||
"module-import",
|
||||
"script",
|
||||
"node-commonjs"
|
||||
"node-commonjs",
|
||||
"asset",
|
||||
"css-import",
|
||||
"css-url"
|
||||
]
|
||||
},
|
||||
"Remotes": {
|
||||
|
||||
2
node_modules/webpack/schemas/plugins/container/ExternalsType.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/container/ExternalsType.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function o(m,{instancePath:r="",parentData:s,parentDataProperty:t,rootData:e=m}={}){return"var"!==m&&"module"!==m&&"assign"!==m&&"this"!==m&&"window"!==m&&"self"!==m&&"global"!==m&&"commonjs"!==m&&"commonjs2"!==m&&"commonjs-module"!==m&&"commonjs-static"!==m&&"amd"!==m&&"amd-require"!==m&&"umd"!==m&&"umd2"!==m&&"jsonp"!==m&&"system"!==m&&"promise"!==m&&"import"!==m&&"module-import"!==m&&"script"!==m&&"node-commonjs"!==m?(o.errors=[{params:{}}],!1):(o.errors=null,!0)}module.exports=o,module.exports.default=o;
|
||||
"use strict";function o(s,{instancePath:r="",parentData:m,parentDataProperty:t,rootData:e=s}={}){return"var"!==s&&"module"!==s&&"assign"!==s&&"this"!==s&&"window"!==s&&"self"!==s&&"global"!==s&&"commonjs"!==s&&"commonjs2"!==s&&"commonjs-module"!==s&&"commonjs-static"!==s&&"amd"!==s&&"amd-require"!==s&&"umd"!==s&&"umd2"!==s&&"jsonp"!==s&&"system"!==s&&"promise"!==s&&"import"!==s&&"module-import"!==s&&"script"!==s&&"node-commonjs"!==s&&"asset"!==s&&"css-import"!==s&&"css-url"!==s?(o.errors=[{params:{}}],!1):(o.errors=null,!0)}module.exports=o,module.exports.default=o;
|
||||
2
node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.check.js
generated
vendored
Executable file → Normal file
File diff suppressed because one or more lines are too long
5
node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.json
generated
vendored
5
node_modules/webpack/schemas/plugins/container/ModuleFederationPlugin.json
generated
vendored
@@ -128,7 +128,10 @@
|
||||
"import",
|
||||
"module-import",
|
||||
"script",
|
||||
"node-commonjs"
|
||||
"node-commonjs",
|
||||
"asset",
|
||||
"css-import",
|
||||
"css-url"
|
||||
]
|
||||
},
|
||||
"LibraryCustomUmdCommentObject": {
|
||||
|
||||
0
node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/css/CssAutoGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssAutoParserOptions.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:n=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportType"!==t&&"import"!==t&&"namedExports"!==t&&"url"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportType){let t=e.exportType;const o=0;if("link"!==t&&"text"!==t&&"css-style-sheet"!==t)return r.errors=[{params:{}}],!1;var s=0===o}else s=!0;if(s){if(void 0!==e.import){const t=0;if("boolean"!=typeof e.import)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s){if(void 0!==e.namedExports){const t=0;if("boolean"!=typeof e.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s)if(void 0!==e.url){const t=0;if("boolean"!=typeof e.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0}}}}return r.errors=null,!0}function e(t,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=t}={}){let p=null,i=0;return r(t,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),e.errors=p,0===i}module.exports=e,module.exports.default=e;
|
||||
0
node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/css/CssGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssGlobalGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportType"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportType){let t=r.exportType;const o=l;if("link"!==t&&"text"!==t&&"css-style-sheet"!==t)return e.errors=[{params:{}}],!1;i=o===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
||||
2
node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssGlobalParserOptions.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:n=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportType"!==t&&"import"!==t&&"namedExports"!==t&&"url"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportType){let t=e.exportType;const o=0;if("link"!==t&&"text"!==t&&"css-style-sheet"!==t)return r.errors=[{params:{}}],!1;var s=0===o}else s=!0;if(s){if(void 0!==e.import){const t=0;if("boolean"!=typeof e.import)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s){if(void 0!==e.namedExports){const t=0;if("boolean"!=typeof e.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s)if(void 0!==e.url){const t=0;if("boolean"!=typeof e.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0}}}}return r.errors=null,!0}function e(t,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=t}={}){let p=null,i=0;return r(t,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),e.errors=p,0===i}module.exports=e,module.exports.default=e;
|
||||
2
node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssModuleGeneratorOptions.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
||||
"use strict";function e(r,{instancePath:t="",parentData:o,parentDataProperty:n,rootData:a=r}={}){let s=null,l=0;if(0===l){if(!r||"object"!=typeof r||Array.isArray(r))return e.errors=[{params:{type:"object"}}],!1;{const t=l;for(const t in r)if("esModule"!==t&&"exportType"!==t&&"exportsConvention"!==t&&"exportsOnly"!==t&&"localIdentName"!==t)return e.errors=[{params:{additionalProperty:t}}],!1;if(t===l){if(void 0!==r.esModule){const t=l;if("boolean"!=typeof r.esModule)return e.errors=[{params:{type:"boolean"}}],!1;var i=t===l}else i=!0;if(i){if(void 0!==r.exportType){let t=r.exportType;const o=l;if("link"!==t&&"text"!==t&&"css-style-sheet"!==t)return e.errors=[{params:{}}],!1;i=o===l}else i=!0;if(i){if(void 0!==r.exportsConvention){let t=r.exportsConvention;const o=l,n=l;let a=!1;const c=l;if("as-is"!==t&&"camel-case"!==t&&"camel-case-only"!==t&&"dashes"!==t&&"dashes-only"!==t){const e={params:{}};null===s?s=[e]:s.push(e),l++}var p=c===l;if(a=a||p,!a){const e=l;if(!(t instanceof Function)){const e={params:{}};null===s?s=[e]:s.push(e),l++}p=e===l,a=a||p}if(!a){const r={params:{}};return null===s?s=[r]:s.push(r),l++,e.errors=s,!1}l=n,null!==s&&(n?s.length=n:s=null),i=o===l}else i=!0;if(i){if(void 0!==r.exportsOnly){const t=l;if("boolean"!=typeof r.exportsOnly)return e.errors=[{params:{type:"boolean"}}],!1;i=t===l}else i=!0;if(i)if(void 0!==r.localIdentName){const t=l;if("string"!=typeof r.localIdentName)return e.errors=[{params:{type:"string"}}],!1;i=t===l}else i=!0}}}}}}return e.errors=s,0===l}function r(t,{instancePath:o="",parentData:n,parentDataProperty:a,rootData:s=t}={}){let l=null,i=0;return e(t,{instancePath:o,parentData:n,parentDataProperty:a,rootData:s})||(l=null===l?e.errors:l.concat(e.errors),i=l.length),r.errors=l,0===i}module.exports=r,module.exports.default=r;
|
||||
2
node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssModuleParserOptions.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:n=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportType"!==t&&"import"!==t&&"namedExports"!==t&&"url"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportType){let t=e.exportType;const o=0;if("link"!==t&&"text"!==t&&"css-style-sheet"!==t)return r.errors=[{params:{}}],!1;var s=0===o}else s=!0;if(s){if(void 0!==e.import){const t=0;if("boolean"!=typeof e.import)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s){if(void 0!==e.namedExports){const t=0;if("boolean"!=typeof e.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s)if(void 0!==e.url){const t=0;if("boolean"!=typeof e.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0}}}}return r.errors=null,!0}function e(t,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=t}={}){let p=null,i=0;return r(t,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),e.errors=p,0===i}module.exports=e,module.exports.default=e;
|
||||
2
node_modules/webpack/schemas/plugins/css/CssParserOptions.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/css/CssParserOptions.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(t,{instancePath:e="",parentData:o,parentDataProperty:a,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const e=0;for(const e in t)if("import"!==e&&"namedExports"!==e&&"url"!==e)return r.errors=[{params:{additionalProperty:e}}],!1;if(0===e){if(void 0!==t.import){const e=0;if("boolean"!=typeof t.import)return r.errors=[{params:{type:"boolean"}}],!1;var s=0===e}else s=!0;if(s){if(void 0!==t.namedExports){const e=0;if("boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0;if(s)if(void 0!==t.url){const e=0;if("boolean"!=typeof t.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===e}else s=!0}}}return r.errors=null,!0}function t(e,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=e}={}){let p=null,i=0;return r(e,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),t.errors=p,0===i}module.exports=t,module.exports.default=t;
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:n=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportType"!==t&&"import"!==t&&"namedExports"!==t&&"url"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportType){let t=e.exportType;const o=0;if("link"!==t&&"text"!==t&&"css-style-sheet"!==t)return r.errors=[{params:{}}],!1;var s=0===o}else s=!0;if(s){if(void 0!==e.import){const t=0;if("boolean"!=typeof e.import)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s){if(void 0!==e.namedExports){const t=0;if("boolean"!=typeof e.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0;if(s)if(void 0!==e.url){const t=0;if("boolean"!=typeof e.url)return r.errors=[{params:{type:"boolean"}}],!1;s=0===t}else s=!0}}}}return r.errors=null,!0}function e(t,{instancePath:o="",parentData:a,parentDataProperty:n,rootData:s=t}={}){let p=null,i=0;return r(t,{instancePath:o,parentData:a,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),i=p.length),e.errors=p,0===i}module.exports=e,module.exports.default=e;
|
||||
0
node_modules/webpack/schemas/plugins/ids/HashedModuleIdsPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/ids/HashedModuleIdsPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/json/JsonModulesPluginGenerator.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.check.js
generated
vendored
Executable file → Normal file
2
node_modules/webpack/schemas/plugins/json/JsonModulesPluginParser.check.js
generated
vendored
Executable file → Normal file
@@ -3,4 +3,4 @@
|
||||
* DO NOT MODIFY BY HAND.
|
||||
* Run `yarn fix:special` to update
|
||||
*/
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:s=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportsDepth"!==t&&"parse"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportsDepth){const t=0;if("number"!=typeof e.exportsDepth)return r.errors=[{params:{type:"number"}}],!1;var n=0===t}else n=!0;if(n)if(void 0!==e.parse){const t=0;if(!(e.parse instanceof Function))return r.errors=[{params:{}}],!1;n=0===t}else n=!0}}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
||||
"use strict";function r(e,{instancePath:t="",parentData:o,parentDataProperty:a,rootData:s=e}={}){if(!e||"object"!=typeof e||Array.isArray(e))return r.errors=[{params:{type:"object"}}],!1;{const t=0;for(const t in e)if("exportsDepth"!==t&&"namedExports"!==t&&"parse"!==t)return r.errors=[{params:{additionalProperty:t}}],!1;if(0===t){if(void 0!==e.exportsDepth){const t=0;if("number"!=typeof e.exportsDepth)return r.errors=[{params:{type:"number"}}],!1;var n=0===t}else n=!0;if(n){if(void 0!==e.namedExports){const t=0;if("boolean"!=typeof e.namedExports)return r.errors=[{params:{type:"boolean"}}],!1;n=0===t}else n=!0;if(n)if(void 0!==e.parse){const t=0;if(!(e.parse instanceof Function))return r.errors=[{params:{}}],!1;n=0===t}else n=!0}}}return r.errors=null,!0}module.exports=r,module.exports.default=r;
|
||||
0
node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/LimitChunkCountPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/MergeDuplicateChunksPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/MergeDuplicateChunksPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/optimize/MinChunkSizePlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/schemes/HttpUriPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check.js
generated
vendored
Executable file → Normal file
0
node_modules/webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check.js
generated
vendored
Executable file → Normal file
Reference in New Issue
Block a user