webpack 5.89.0 → 5.90.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of webpack might be problematic. Click here for more details.
- package/README.md +3 -0
- package/bin/webpack.js +1 -3
- package/hot/log.js +0 -2
- package/lib/APIPlugin.js +17 -13
- package/lib/ChunkGraph.js +1 -1
- package/lib/CleanPlugin.js +12 -12
- package/lib/Compilation.js +26 -17
- package/lib/Compiler.js +13 -0
- package/lib/ConcatenationScope.js +2 -2
- package/lib/ConditionalInitFragment.js +3 -3
- package/lib/ContextModule.js +4 -4
- package/lib/ContextModuleFactory.js +1 -1
- package/lib/DefinePlugin.js +47 -26
- package/lib/DependencyTemplate.js +3 -1
- package/lib/EnvironmentNotSupportAsyncWarning.js +52 -0
- package/lib/EvalDevToolModulePlugin.js +1 -1
- package/lib/EvalSourceMapDevToolPlugin.js +2 -2
- package/lib/ExportsInfoApiPlugin.js +2 -2
- package/lib/ExternalModule.js +47 -12
- package/lib/ExternalModuleFactoryPlugin.js +1 -1
- package/lib/FileSystemInfo.js +20 -3
- package/lib/FlagDependencyExportsPlugin.js +1 -1
- package/lib/Generator.js +1 -0
- package/lib/HotModuleReplacementPlugin.js +3 -3
- package/lib/InitFragment.js +7 -7
- package/lib/LibManifestPlugin.js +4 -1
- package/lib/Module.js +2 -1
- package/lib/ModuleFilenameHelpers.js +1 -1
- package/lib/ModuleInfoHeaderPlugin.js +1 -1
- package/lib/MultiStats.js +2 -2
- package/lib/NodeStuffPlugin.js +48 -0
- package/lib/NormalModule.js +13 -11
- package/lib/NormalModuleFactory.js +7 -7
- package/lib/RuntimeTemplate.js +15 -11
- package/lib/SourceMapDevToolPlugin.js +2 -2
- package/lib/Stats.js +4 -0
- package/lib/WebpackOptionsApply.js +4 -3
- package/lib/asset/AssetModulesPlugin.js +2 -3
- package/lib/async-modules/AwaitDependenciesInitFragment.js +2 -2
- package/lib/buildChunkGraph.js +53 -0
- package/lib/cache/AddManagedPathsPlugin.js +6 -1
- package/lib/cache/IdleFileCachePlugin.js +12 -5
- package/lib/cache/PackFileCacheStrategy.js +3 -3
- package/lib/cache/ResolverCachePlugin.js +2 -2
- package/lib/config/browserslistTargetHandler.js +35 -14
- package/lib/config/defaults.js +88 -52
- package/lib/config/normalization.js +17 -18
- package/lib/config/target.js +5 -0
- package/lib/container/ContainerReferencePlugin.js +1 -1
- package/lib/css/CssExportsGenerator.js +14 -1
- package/lib/css/CssGenerator.js +14 -1
- package/lib/css/CssLoadingRuntimeModule.js +23 -23
- package/lib/css/CssModulesPlugin.js +68 -32
- package/lib/css/CssParser.js +8 -3
- package/lib/debug/ProfilingPlugin.js +2 -2
- package/lib/dependencies/AMDDefineDependency.js +4 -4
- package/lib/dependencies/AMDDefineDependencyParserPlugin.js +126 -34
- package/lib/dependencies/AMDPlugin.js +11 -4
- package/lib/dependencies/AMDRequireArrayDependency.js +13 -1
- package/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js +159 -43
- package/lib/dependencies/AMDRequireDependency.js +2 -2
- package/lib/dependencies/AMDRequireItemDependency.js +1 -1
- package/lib/dependencies/CachedConstDependency.js +8 -1
- package/lib/dependencies/CommonJsImportsParserPlugin.js +1 -1
- package/lib/dependencies/ContextElementDependency.js +1 -1
- package/lib/dependencies/ExternalModuleDependency.js +107 -0
- package/lib/dependencies/ExternalModuleInitFragment.js +131 -0
- package/lib/dependencies/HarmonyAcceptDependency.js +1 -1
- package/lib/dependencies/HarmonyDetectionParserPlugin.js +7 -1
- package/lib/dependencies/HarmonyExportDependencyParserPlugin.js +18 -18
- package/lib/dependencies/HarmonyExportInitFragment.js +6 -6
- package/lib/dependencies/HarmonyImportDependency.js +4 -4
- package/lib/dependencies/HarmonyImportDependencyParserPlugin.js +6 -6
- package/lib/dependencies/ImportDependency.js +26 -6
- package/lib/dependencies/JsonExportsDependency.js +1 -1
- package/lib/dependencies/LoaderPlugin.js +2 -1
- package/lib/dependencies/LocalModuleDependency.js +1 -1
- package/lib/dependencies/PureExpressionDependency.js +12 -4
- package/lib/dependencies/RequireIncludeDependency.js +1 -1
- package/lib/dependencies/WebpackIsIncludedDependency.js +1 -1
- package/lib/dependencies/WorkerPlugin.js +10 -3
- package/lib/dependencies/getFunctionExpression.js +2 -2
- package/lib/esm/ModuleChunkLoadingRuntimeModule.js +6 -6
- package/lib/hmr/HotModuleReplacement.runtime.js +3 -5
- package/lib/hmr/lazyCompilationBackend.js +4 -4
- package/lib/ids/DeterministicModuleIdsPlugin.js +1 -1
- package/lib/index.js +4 -0
- package/lib/javascript/JavascriptGenerator.js +16 -1
- package/lib/javascript/JavascriptModulesPlugin.js +33 -33
- package/lib/javascript/JavascriptParser.js +220 -74
- package/lib/json/JsonGenerator.js +1 -1
- package/lib/library/AmdLibraryPlugin.js +5 -1
- package/lib/library/AssignLibraryPlugin.js +1 -1
- package/lib/library/SystemLibraryPlugin.js +1 -1
- package/lib/library/UmdLibraryPlugin.js +39 -39
- package/lib/logging/createConsoleLogger.js +1 -19
- package/lib/node/ReadFileChunkLoadingRuntimeModule.js +8 -8
- package/lib/node/RequireChunkLoadingRuntimeModule.js +8 -8
- package/lib/node/nodeConsole.js +1 -5
- package/lib/optimize/ConcatenatedModule.js +7 -7
- package/lib/optimize/InnerGraphPlugin.js +9 -1
- package/lib/optimize/MangleExportsPlugin.js +5 -1
- package/lib/optimize/ModuleConcatenationPlugin.js +2 -2
- package/lib/optimize/RemoveParentModulesPlugin.js +123 -47
- package/lib/optimize/SideEffectsFlagPlugin.js +15 -3
- package/lib/optimize/SplitChunksPlugin.js +16 -16
- package/lib/prefetch/ChunkPrefetchStartupRuntimeModule.js +2 -2
- package/lib/rules/RuleSetCompiler.js +1 -1
- package/lib/runtime/AutoPublicPathRuntimeModule.js +2 -2
- package/lib/runtime/GetChunkFilenameRuntimeModule.js +4 -4
- package/lib/runtime/GetTrustedTypesPolicyRuntimeModule.js +4 -4
- package/lib/runtime/LoadScriptRuntimeModule.js +2 -2
- package/lib/runtime/StartupChunkDependenciesRuntimeModule.js +23 -22
- package/lib/runtime/StartupEntrypointRuntimeModule.js +2 -2
- package/lib/schemes/HttpUriPlugin.js +1 -1
- package/lib/serialization/FileMiddleware.js +4 -4
- package/lib/serialization/ObjectMiddleware.js +4 -4
- package/lib/sharing/ConsumeSharedPlugin.js +5 -5
- package/lib/sharing/ConsumeSharedRuntimeModule.js +8 -4
- package/lib/sharing/ProvideSharedModule.js +2 -2
- package/lib/sharing/SharePlugin.js +2 -2
- package/lib/sharing/ShareRuntimeModule.js +1 -1
- package/lib/sharing/utils.js +24 -28
- package/lib/stats/DefaultStatsFactoryPlugin.js +10 -10
- package/lib/stats/DefaultStatsPresetPlugin.js +3 -7
- package/lib/stats/DefaultStatsPrinterPlugin.js +34 -31
- package/lib/util/chainedImports.js +7 -6
- package/lib/util/cleverMerge.js +4 -4
- package/lib/util/comparators.js +59 -23
- package/lib/util/hash/xxhash64.js +2 -2
- package/lib/util/identifier.js +2 -2
- package/lib/util/internalSerializables.js +6 -0
- package/lib/util/numberHash.js +64 -52
- package/lib/util/runtime.js +18 -1
- package/lib/util/semver.js +19 -24
- package/lib/util/smartGrouping.js +1 -1
- package/lib/wasm-async/AsyncWasmLoadingRuntimeModule.js +53 -28
- package/lib/wasm-async/AsyncWebAssemblyJavascriptGenerator.js +2 -2
- package/lib/wasm-async/AsyncWebAssemblyParser.js +6 -0
- package/lib/wasm-sync/WasmChunkLoadingRuntimeModule.js +2 -2
- package/lib/wasm-sync/WebAssemblyJavascriptGenerator.js +2 -2
- package/lib/web/JsonpChunkLoadingRuntimeModule.js +13 -13
- package/lib/webworker/ImportScriptsChunkLoadingRuntimeModule.js +6 -6
- package/package.json +25 -80
- package/schemas/WebpackOptions.check.js +1 -1
- package/schemas/WebpackOptions.json +140 -32
- package/schemas/plugins/css/CssAutoGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssAutoGeneratorOptions.check.js +6 -0
- package/schemas/plugins/css/CssAutoGeneratorOptions.json +3 -0
- package/schemas/plugins/css/CssAutoParserOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssAutoParserOptions.check.js +6 -0
- package/schemas/plugins/css/CssAutoParserOptions.json +3 -0
- package/schemas/plugins/css/CssGeneratorOptions.check.js +1 -1
- package/schemas/plugins/css/CssGlobalGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssGlobalGeneratorOptions.check.js +6 -0
- package/schemas/plugins/css/CssGlobalGeneratorOptions.json +3 -0
- package/schemas/plugins/css/CssGlobalParserOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssGlobalParserOptions.check.js +6 -0
- package/schemas/plugins/css/CssGlobalParserOptions.json +3 -0
- package/schemas/plugins/css/CssModuleGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssModuleGeneratorOptions.check.js +6 -0
- package/schemas/plugins/css/CssModuleGeneratorOptions.json +3 -0
- package/schemas/plugins/css/CssModuleParserOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssModuleParserOptions.check.js +6 -0
- package/schemas/plugins/css/CssModuleParserOptions.json +3 -0
- package/schemas/plugins/css/CssParserOptions.check.js +1 -1
- package/types.d.ts +273 -94
@@ -359,25 +359,34 @@
|
|
359
359
|
"description": "This option enables cross-origin loading of chunks.",
|
360
360
|
"enum": [false, "anonymous", "use-credentials"]
|
361
361
|
},
|
362
|
-
"
|
363
|
-
"description": "
|
364
|
-
"
|
365
|
-
|
366
|
-
|
362
|
+
"CssAutoGeneratorOptions": {
|
363
|
+
"description": "Generator options for css/auto modules.",
|
364
|
+
"type": "object",
|
365
|
+
"additionalProperties": false,
|
366
|
+
"properties": {
|
367
|
+
"exportsOnly": {
|
368
|
+
"$ref": "#/definitions/CssGeneratorExportsOnly"
|
367
369
|
}
|
368
|
-
|
370
|
+
}
|
369
371
|
},
|
370
|
-
"
|
371
|
-
"description": "
|
372
|
+
"CssAutoParserOptions": {
|
373
|
+
"description": "Parser options for css/auto modules.",
|
372
374
|
"type": "object",
|
373
375
|
"additionalProperties": false,
|
374
376
|
"properties": {
|
375
|
-
"
|
376
|
-
"
|
377
|
-
"type": "boolean"
|
377
|
+
"namedExports": {
|
378
|
+
"$ref": "#/definitions/CssParserNamedExports"
|
378
379
|
}
|
379
380
|
}
|
380
381
|
},
|
382
|
+
"CssChunkFilename": {
|
383
|
+
"description": "Specifies the filename template of non-initial output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.",
|
384
|
+
"oneOf": [
|
385
|
+
{
|
386
|
+
"$ref": "#/definitions/FilenameTemplate"
|
387
|
+
}
|
388
|
+
]
|
389
|
+
},
|
381
390
|
"CssFilename": {
|
382
391
|
"description": "Specifies the filename template of output css files on disk. You must **not** specify an absolute path here, but the path may contain folders separated by '/'! The specified path is joined with the value of the 'output.path' option to determine the location on disk.",
|
383
392
|
"oneOf": [
|
@@ -386,17 +395,73 @@
|
|
386
395
|
}
|
387
396
|
]
|
388
397
|
},
|
398
|
+
"CssGeneratorExportsOnly": {
|
399
|
+
"description": "Avoid generating and loading a stylesheet and only embed exports from css into output javascript files.",
|
400
|
+
"type": "boolean"
|
401
|
+
},
|
389
402
|
"CssGeneratorOptions": {
|
390
403
|
"description": "Generator options for css modules.",
|
391
404
|
"type": "object",
|
392
405
|
"additionalProperties": false,
|
393
|
-
"properties": {
|
406
|
+
"properties": {
|
407
|
+
"exportsOnly": {
|
408
|
+
"$ref": "#/definitions/CssGeneratorExportsOnly"
|
409
|
+
}
|
410
|
+
}
|
411
|
+
},
|
412
|
+
"CssGlobalGeneratorOptions": {
|
413
|
+
"description": "Generator options for css/global modules.",
|
414
|
+
"type": "object",
|
415
|
+
"additionalProperties": false,
|
416
|
+
"properties": {
|
417
|
+
"exportsOnly": {
|
418
|
+
"$ref": "#/definitions/CssGeneratorExportsOnly"
|
419
|
+
}
|
420
|
+
}
|
421
|
+
},
|
422
|
+
"CssGlobalParserOptions": {
|
423
|
+
"description": "Parser options for css/global modules.",
|
424
|
+
"type": "object",
|
425
|
+
"additionalProperties": false,
|
426
|
+
"properties": {
|
427
|
+
"namedExports": {
|
428
|
+
"$ref": "#/definitions/CssParserNamedExports"
|
429
|
+
}
|
430
|
+
}
|
431
|
+
},
|
432
|
+
"CssModuleGeneratorOptions": {
|
433
|
+
"description": "Generator options for css/module modules.",
|
434
|
+
"type": "object",
|
435
|
+
"additionalProperties": false,
|
436
|
+
"properties": {
|
437
|
+
"exportsOnly": {
|
438
|
+
"$ref": "#/definitions/CssGeneratorExportsOnly"
|
439
|
+
}
|
440
|
+
}
|
441
|
+
},
|
442
|
+
"CssModuleParserOptions": {
|
443
|
+
"description": "Parser options for css/module modules.",
|
444
|
+
"type": "object",
|
445
|
+
"additionalProperties": false,
|
446
|
+
"properties": {
|
447
|
+
"namedExports": {
|
448
|
+
"$ref": "#/definitions/CssParserNamedExports"
|
449
|
+
}
|
450
|
+
}
|
451
|
+
},
|
452
|
+
"CssParserNamedExports": {
|
453
|
+
"description": "Use ES modules named export for css exports.",
|
454
|
+
"type": "boolean"
|
394
455
|
},
|
395
456
|
"CssParserOptions": {
|
396
457
|
"description": "Parser options for css modules.",
|
397
458
|
"type": "object",
|
398
459
|
"additionalProperties": false,
|
399
|
-
"properties": {
|
460
|
+
"properties": {
|
461
|
+
"namedExports": {
|
462
|
+
"$ref": "#/definitions/CssParserNamedExports"
|
463
|
+
}
|
464
|
+
}
|
400
465
|
},
|
401
466
|
"Dependencies": {
|
402
467
|
"description": "References to other configurations to depend on.",
|
@@ -408,7 +473,16 @@
|
|
408
473
|
},
|
409
474
|
"DevServer": {
|
410
475
|
"description": "Options for the webpack-dev-server.",
|
411
|
-
"
|
476
|
+
"anyOf": [
|
477
|
+
{
|
478
|
+
"description": "Disable dev server.",
|
479
|
+
"enum": [false]
|
480
|
+
},
|
481
|
+
{
|
482
|
+
"description": "Options for the webpack-dev-server.",
|
483
|
+
"type": "object"
|
484
|
+
}
|
485
|
+
]
|
412
486
|
},
|
413
487
|
"DevTool": {
|
414
488
|
"description": "A developer tool to enhance debugging (false | eval | [inline-|hidden-|eval-][nosources-][cheap-[module-]]source-map).",
|
@@ -728,6 +802,10 @@
|
|
728
802
|
"description": "The environment supports arrow functions ('() => { ... }').",
|
729
803
|
"type": "boolean"
|
730
804
|
},
|
805
|
+
"asyncFunction": {
|
806
|
+
"description": "The environment supports async function and await ('async function () { await ... }').",
|
807
|
+
"type": "boolean"
|
808
|
+
},
|
731
809
|
"bigIntLiteral": {
|
732
810
|
"description": "The environment supports BigInt as literal (123n).",
|
733
811
|
"type": "boolean"
|
@@ -801,14 +879,7 @@
|
|
801
879
|
},
|
802
880
|
"css": {
|
803
881
|
"description": "Enable css support.",
|
804
|
-
"
|
805
|
-
{
|
806
|
-
"type": "boolean"
|
807
|
-
},
|
808
|
-
{
|
809
|
-
"$ref": "#/definitions/CssExperimentOptions"
|
810
|
-
}
|
811
|
-
]
|
882
|
+
"type": "boolean"
|
812
883
|
},
|
813
884
|
"futureDefaults": {
|
814
885
|
"description": "Apply defaults of next major version.",
|
@@ -910,14 +981,7 @@
|
|
910
981
|
},
|
911
982
|
"css": {
|
912
983
|
"description": "Enable css support.",
|
913
|
-
"
|
914
|
-
{
|
915
|
-
"enum": [false]
|
916
|
-
},
|
917
|
-
{
|
918
|
-
"$ref": "#/definitions/CssExperimentOptions"
|
919
|
-
}
|
920
|
-
]
|
984
|
+
"type": "boolean"
|
921
985
|
},
|
922
986
|
"futureDefaults": {
|
923
987
|
"description": "Apply defaults of next major version.",
|
@@ -1375,6 +1439,18 @@
|
|
1375
1439
|
"asset/resource": {
|
1376
1440
|
"$ref": "#/definitions/AssetResourceGeneratorOptions"
|
1377
1441
|
},
|
1442
|
+
"css": {
|
1443
|
+
"$ref": "#/definitions/CssGeneratorOptions"
|
1444
|
+
},
|
1445
|
+
"css/auto": {
|
1446
|
+
"$ref": "#/definitions/CssAutoGeneratorOptions"
|
1447
|
+
},
|
1448
|
+
"css/global": {
|
1449
|
+
"$ref": "#/definitions/CssGlobalGeneratorOptions"
|
1450
|
+
},
|
1451
|
+
"css/module": {
|
1452
|
+
"$ref": "#/definitions/CssModuleGeneratorOptions"
|
1453
|
+
},
|
1378
1454
|
"javascript": {
|
1379
1455
|
"$ref": "#/definitions/EmptyGeneratorOptions"
|
1380
1456
|
},
|
@@ -2402,11 +2478,11 @@
|
|
2402
2478
|
"properties": {
|
2403
2479
|
"__dirname": {
|
2404
2480
|
"description": "Include a polyfill for the '__dirname' variable.",
|
2405
|
-
"enum": [false, true, "warn-mock", "mock", "eval-only"]
|
2481
|
+
"enum": [false, true, "warn-mock", "mock", "node-module", "eval-only"]
|
2406
2482
|
},
|
2407
2483
|
"__filename": {
|
2408
2484
|
"description": "Include a polyfill for the '__filename' variable.",
|
2409
|
-
"enum": [false, true, "warn-mock", "mock", "eval-only"]
|
2485
|
+
"enum": [false, true, "warn-mock", "mock", "node-module", "eval-only"]
|
2410
2486
|
},
|
2411
2487
|
"global": {
|
2412
2488
|
"description": "Include a polyfill for the 'global' variable.",
|
@@ -3518,6 +3594,18 @@
|
|
3518
3594
|
"asset/source": {
|
3519
3595
|
"$ref": "#/definitions/EmptyParserOptions"
|
3520
3596
|
},
|
3597
|
+
"css": {
|
3598
|
+
"$ref": "#/definitions/CssParserOptions"
|
3599
|
+
},
|
3600
|
+
"css/auto": {
|
3601
|
+
"$ref": "#/definitions/CssAutoParserOptions"
|
3602
|
+
},
|
3603
|
+
"css/global": {
|
3604
|
+
"$ref": "#/definitions/CssGlobalParserOptions"
|
3605
|
+
},
|
3606
|
+
"css/module": {
|
3607
|
+
"$ref": "#/definitions/CssModuleParserOptions"
|
3608
|
+
},
|
3521
3609
|
"javascript": {
|
3522
3610
|
"$ref": "#/definitions/JavascriptParserOptions"
|
3523
3611
|
},
|
@@ -4614,6 +4702,26 @@
|
|
4614
4702
|
"type": "boolean"
|
4615
4703
|
}
|
4616
4704
|
}
|
4705
|
+
},
|
4706
|
+
"unmanagedPaths": {
|
4707
|
+
"description": "List of paths that are not managed by a package manager and the contents are subject to change.",
|
4708
|
+
"type": "array",
|
4709
|
+
"items": {
|
4710
|
+
"description": "List of paths that are not managed by a package manager and the contents are subject to change.",
|
4711
|
+
"anyOf": [
|
4712
|
+
{
|
4713
|
+
"description": "A RegExp matching an unmanaged directory.",
|
4714
|
+
"instanceof": "RegExp",
|
4715
|
+
"tsType": "RegExp"
|
4716
|
+
},
|
4717
|
+
{
|
4718
|
+
"description": "A path to an unmanaged directory.",
|
4719
|
+
"type": "string",
|
4720
|
+
"absolutePath": true,
|
4721
|
+
"minLength": 1
|
4722
|
+
}
|
4723
|
+
]
|
4724
|
+
}
|
4617
4725
|
}
|
4618
4726
|
}
|
4619
4727
|
},
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
* This file was automatically generated.
|
3
|
+
* DO NOT MODIFY BY HAND.
|
4
|
+
* Run `yarn special-lint-fix` to update
|
5
|
+
*/
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("exportsOnly"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.exportsOnly&&"boolean"!=typeof t.exportsOnly)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,l=0;return r(a,{instancePath:e,parentData:o,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),l=p.length),t.errors=p,0===l}module.exports=t,module.exports.default=t;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
* This file was automatically generated.
|
3
|
+
* DO NOT MODIFY BY HAND.
|
4
|
+
* Run `yarn special-lint-fix` to update
|
5
|
+
*/
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("namedExports"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.namedExports&&"boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,i=0;return r(a,{instancePath:e,parentData:o,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;
|
@@ -3,4 +3,4 @@
|
|
3
3
|
* DO NOT MODIFY BY HAND.
|
4
4
|
* Run `yarn special-lint-fix` to update
|
5
5
|
*/
|
6
|
-
"use strict";function r(t,{instancePath:
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("exportsOnly"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.exportsOnly&&"boolean"!=typeof t.exportsOnly)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,l=0;return r(a,{instancePath:e,parentData:o,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),l=p.length),t.errors=p,0===l}module.exports=t,module.exports.default=t;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
* This file was automatically generated.
|
3
|
+
* DO NOT MODIFY BY HAND.
|
4
|
+
* Run `yarn special-lint-fix` to update
|
5
|
+
*/
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("exportsOnly"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.exportsOnly&&"boolean"!=typeof t.exportsOnly)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,l=0;return r(a,{instancePath:e,parentData:o,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),l=p.length),t.errors=p,0===l}module.exports=t,module.exports.default=t;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
* This file was automatically generated.
|
3
|
+
* DO NOT MODIFY BY HAND.
|
4
|
+
* Run `yarn special-lint-fix` to update
|
5
|
+
*/
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("namedExports"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.namedExports&&"boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,i=0;return r(a,{instancePath:e,parentData:o,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;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
* This file was automatically generated.
|
3
|
+
* DO NOT MODIFY BY HAND.
|
4
|
+
* Run `yarn special-lint-fix` to update
|
5
|
+
*/
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("exportsOnly"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.exportsOnly&&"boolean"!=typeof t.exportsOnly)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,l=0;return r(a,{instancePath:e,parentData:o,parentDataProperty:n,rootData:s})||(p=null===p?r.errors:p.concat(r.errors),l=p.length),t.errors=p,0===l}module.exports=t,module.exports.default=t;
|
@@ -0,0 +1,6 @@
|
|
1
|
+
/*
|
2
|
+
* This file was automatically generated.
|
3
|
+
* DO NOT MODIFY BY HAND.
|
4
|
+
* Run `yarn special-lint-fix` to update
|
5
|
+
*/
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("namedExports"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.namedExports&&"boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,i=0;return r(a,{instancePath:e,parentData:o,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;
|
@@ -3,4 +3,4 @@
|
|
3
3
|
* DO NOT MODIFY BY HAND.
|
4
4
|
* Run `yarn special-lint-fix` to update
|
5
5
|
*/
|
6
|
-
"use strict";function r(t,{instancePath:
|
6
|
+
"use strict";function r(t,{instancePath:a="",parentData:e,parentDataProperty:o,rootData:n=t}={}){if(!t||"object"!=typeof t||Array.isArray(t))return r.errors=[{params:{type:"object"}}],!1;{const a=0;for(const a in t)if("namedExports"!==a)return r.errors=[{params:{additionalProperty:a}}],!1;if(0===a&&void 0!==t.namedExports&&"boolean"!=typeof t.namedExports)return r.errors=[{params:{type:"boolean"}}],!1}return r.errors=null,!0}function t(a,{instancePath:e="",parentData:o,parentDataProperty:n,rootData:s=a}={}){let p=null,i=0;return r(a,{instancePath:e,parentData:o,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;
|