@rspack-canary/browser 1.4.12-canary-c9012b88-20250801081627 → 1.4.12-canary-d2f8a578-20250801090118
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.
- package/dist/BuildInfo.d.ts +17 -0
- package/dist/Chunk.d.ts +16 -0
- package/dist/ChunkGraph.d.ts +9 -0
- package/dist/Chunks.d.ts +12 -0
- package/dist/CodeGenerationResults.d.ts +1 -0
- package/dist/Compilation.d.ts +420 -0
- package/dist/Compiler.d.ts +192 -0
- package/dist/ConcatenatedModule.d.ts +1 -0
- package/dist/ContextModule.d.ts +1 -0
- package/dist/ContextModuleFactory.d.ts +13 -0
- package/dist/Diagnostics.d.ts +7 -0
- package/dist/Entrypoint.d.ts +2 -0
- package/dist/ErrorHelpers.d.ts +3 -0
- package/dist/ExecuteModulePlugin.d.ts +4 -0
- package/dist/ExportsInfo.d.ts +20 -0
- package/dist/ExternalModule.d.ts +1 -0
- package/dist/FileSystem.d.ts +54 -0
- package/dist/FileSystemInfo.d.ts +5 -0
- package/dist/Module.d.ts +53 -0
- package/dist/ModuleGraph.d.ts +19 -0
- package/dist/ModuleTypeConstants.d.ts +8 -0
- package/dist/MultiCompiler.d.ts +78 -0
- package/dist/MultiStats.d.ts +22 -0
- package/dist/MultiWatching.d.ts +27 -0
- package/dist/NativeWatchFileSystem.d.ts +17 -0
- package/dist/NormalModule.d.ts +15 -0
- package/dist/NormalModuleFactory.d.ts +23 -0
- package/dist/Resolver.d.ts +24 -0
- package/dist/ResolverFactory.d.ts +14 -0
- package/dist/RspackError.d.ts +9 -0
- package/dist/RuleSetCompiler.d.ts +9 -0
- package/dist/RuntimeGlobals.d.ts +325 -0
- package/dist/RuntimeModule.d.ts +32 -0
- package/dist/Stats.d.ts +17 -0
- package/dist/Template.d.ts +77 -0
- package/dist/Watching.d.ts +47 -0
- package/dist/browser/buffer.d.ts +1 -0
- package/dist/browser/fs.d.ts +12 -0
- package/dist/browser/index.d.ts +5 -0
- package/dist/browser/service.d.ts +3 -0
- package/dist/builtin-loader/index.d.ts +1 -0
- package/dist/builtin-loader/lightningcss/index.d.ts +117 -0
- package/dist/builtin-loader/swc/collectTypeScriptInfo.d.ts +21 -0
- package/dist/builtin-loader/swc/index.d.ts +5 -0
- package/dist/builtin-loader/swc/pluginImport.d.ts +33 -0
- package/dist/builtin-loader/swc/types.d.ts +83 -0
- package/dist/builtin-plugin/APIPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ArrayPushCallbackChunkFormatPlugin.d.ts +9 -0
- package/dist/builtin-plugin/AssetModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/AsyncWebAssemblyModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/BannerPlugin.d.ts +40 -0
- package/dist/builtin-plugin/BundlerInfoRspackPlugin.d.ts +14 -0
- package/dist/builtin-plugin/ChunkPrefetchPreloadPlugin.d.ts +9 -0
- package/dist/builtin-plugin/CircularDependencyRspackPlugin.d.ts +59 -0
- package/dist/builtin-plugin/CommonJsChunkFormatPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ContextReplacementPlugin.d.ts +9 -0
- package/dist/builtin-plugin/CopyRspackPlugin.d.ts +14 -0
- package/dist/builtin-plugin/CssChunkingPlugin.d.ts +21 -0
- package/dist/builtin-plugin/CssModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/DataUriPlugin.d.ts +9 -0
- package/dist/builtin-plugin/DefinePlugin.d.ts +16 -0
- package/dist/builtin-plugin/DeterministicChunkIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/DllEntryPlugin.d.ts +12 -0
- package/dist/builtin-plugin/DllReferenceAgencyPlugin.d.ts +11 -0
- package/dist/builtin-plugin/DynamicEntryPlugin.d.ts +12 -0
- package/dist/builtin-plugin/ElectronTargetPlugin.d.ts +9 -0
- package/dist/builtin-plugin/EnableChunkLoadingPlugin.d.ts +25 -0
- package/dist/builtin-plugin/EnableLibraryPlugin.d.ts +11 -0
- package/dist/builtin-plugin/EnableWasmLoadingPlugin.d.ts +9 -0
- package/dist/builtin-plugin/EnsureChunkConditionsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/EntryPlugin.d.ts +32 -0
- package/dist/builtin-plugin/EvalDevToolModulePlugin.d.ts +11 -0
- package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +10 -0
- package/dist/builtin-plugin/ExternalsPlugin.d.ts +11 -0
- package/dist/builtin-plugin/FetchCompileAsyncWasmPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FileUriPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FlagAllModulesAsUsedPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FlagDependencyExportsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/FlagDependencyUsagePlugin.d.ts +10 -0
- package/dist/builtin-plugin/HotModuleReplacementPlugin.d.ts +7 -0
- package/dist/builtin-plugin/HttpExternalsRspackPlugin.d.ts +9 -0
- package/dist/builtin-plugin/HttpUriPlugin.d.ts +36 -0
- package/dist/builtin-plugin/IgnorePlugin.d.ts +19 -0
- package/dist/builtin-plugin/InferAsyncModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +15 -0
- package/dist/builtin-plugin/JsLoaderRspackPlugin.d.ts +10 -0
- package/dist/builtin-plugin/JsonModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/LibManifestPlugin.d.ts +17 -0
- package/dist/builtin-plugin/LightningCssMinimizerRspackPlugin.d.ts +32 -0
- package/dist/builtin-plugin/LimitChunkCountPlugin.d.ts +14 -0
- package/dist/builtin-plugin/MangleExportsPlugin.d.ts +10 -0
- package/dist/builtin-plugin/MergeDuplicateChunksPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ModuleChunkFormatPlugin.d.ts +9 -0
- package/dist/builtin-plugin/ModuleConcatenationPlugin.d.ts +8 -0
- package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NamedChunkIdsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NamedModuleIdsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NaturalChunkIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/NaturalModuleIdsPlugin.d.ts +8 -0
- package/dist/builtin-plugin/NoEmitOnErrorsPlugin.d.ts +9 -0
- package/dist/builtin-plugin/NodeTargetPlugin.d.ts +9 -0
- package/dist/builtin-plugin/OccurrenceChunkIdsPlugin.d.ts +10 -0
- package/dist/builtin-plugin/ProgressPlugin.d.ts +11 -0
- package/dist/builtin-plugin/ProvidePlugin.d.ts +10 -0
- package/dist/builtin-plugin/RealContentHashPlugin.d.ts +9 -0
- package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/RemoveEmptyChunksPlugin.d.ts +9 -0
- package/dist/builtin-plugin/RsdoctorPlugin.d.ts +49 -0
- package/dist/builtin-plugin/RslibPlugin.d.ts +11 -0
- package/dist/builtin-plugin/RstestPlugin.d.ts +11 -0
- package/dist/builtin-plugin/RuntimeChunkPlugin.d.ts +11 -0
- package/dist/builtin-plugin/RuntimePlugin.d.ts +28 -0
- package/dist/builtin-plugin/SideEffectsFlagPlugin.d.ts +9 -0
- package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +19 -0
- package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +11 -0
- package/dist/builtin-plugin/SplitChunksPlugin.d.ts +11 -0
- package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +40 -0
- package/dist/builtin-plugin/SwcJsMinimizerPlugin.d.ts +214 -0
- package/dist/builtin-plugin/WarnCaseSensitiveModulesPlugin.d.ts +9 -0
- package/dist/builtin-plugin/WebWorkerTemplatePlugin.d.ts +7 -0
- package/dist/builtin-plugin/WorkerPlugin.d.ts +13 -0
- package/dist/builtin-plugin/base.d.ts +45 -0
- package/dist/builtin-plugin/css-extract/index.d.ts +24 -0
- package/dist/builtin-plugin/css-extract/loader.d.ts +21 -0
- package/dist/builtin-plugin/css-extract/utils.d.ts +6 -0
- package/dist/builtin-plugin/html-plugin/hooks.d.ts +32 -0
- package/dist/builtin-plugin/html-plugin/index.d.ts +2 -0
- package/dist/builtin-plugin/html-plugin/options.d.ts +83 -0
- package/dist/builtin-plugin/html-plugin/plugin.d.ts +24 -0
- package/dist/builtin-plugin/html-plugin/taps.d.ts +2 -0
- package/dist/builtin-plugin/index.d.ts +80 -0
- package/dist/builtin-plugin/lazy-compilation/lazyCompilation.d.ts +24 -0
- package/dist/builtin-plugin/lazy-compilation/middleware.d.ts +4 -0
- package/dist/config/adapter.d.ts +8 -0
- package/dist/config/adapterRuleUse.d.ts +333 -0
- package/dist/config/browserslistTargetHandler.d.ts +15 -0
- package/dist/config/defaults.d.ts +13 -0
- package/dist/config/devServer.d.ts +207 -0
- package/dist/config/index.d.ts +4 -0
- package/dist/config/normalization.d.ts +154 -0
- package/dist/config/target.d.ts +89 -0
- package/dist/config/types.d.ts +2282 -0
- package/dist/container/ContainerPlugin.d.ts +40 -0
- package/dist/container/ContainerReferencePlugin.d.ts +33 -0
- package/dist/container/ModuleFederationPlugin.d.ts +13 -0
- package/dist/container/ModuleFederationPluginV1.d.ts +22 -0
- package/dist/container/ModuleFederationRuntimePlugin.d.ts +12 -0
- package/dist/container/index.d.ts +4 -0
- package/dist/container/options.d.ts +3 -0
- package/dist/error/ConcurrentCompilationError.d.ts +14 -0
- package/dist/exports.d.ts +166 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.mjs +57013 -0
- package/dist/index.mjs.LICENSE.txt +10 -0
- package/dist/lib/AbstractMethodError.d.ts +23 -0
- package/dist/lib/Cache.d.ts +65 -0
- package/dist/lib/CacheFacade.d.ts +139 -0
- package/dist/lib/DllPlugin.d.ts +42 -0
- package/dist/lib/DllReferencePlugin.d.ts +119 -0
- package/dist/lib/EntryOptionPlugin.d.ts +33 -0
- package/dist/lib/EnvironmentPlugin.d.ts +22 -0
- package/dist/lib/HookWebpackError.d.ts +40 -0
- package/dist/lib/IgnoreWarningsPlugin.d.ts +25 -0
- package/dist/lib/LoaderOptionsPlugin.d.ts +28 -0
- package/dist/lib/LoaderTargetPlugin.d.ts +24 -0
- package/dist/lib/ModuleFilenameHelpers.d.ts +53 -0
- package/dist/lib/NormalModuleReplacementPlugin.d.ts +29 -0
- package/dist/lib/WebpackError.d.ts +21 -0
- package/dist/lib/cache/MemoryCachePlugin.d.ts +5 -0
- package/dist/lib/cache/getLazyHashedEtag.d.ts +35 -0
- package/dist/lib/cache/mergeEtags.d.ts +17 -0
- package/dist/loader-runner/LoaderLoadingError.d.ts +13 -0
- package/dist/loader-runner/ModuleError.d.ts +7 -0
- package/dist/loader-runner/ModuleWarning.d.ts +7 -0
- package/dist/loader-runner/index.d.ts +34 -0
- package/dist/loader-runner/loadLoader.d.ts +12 -0
- package/dist/loader-runner/service.d.ts +71 -0
- package/dist/loader-runner/utils.d.ts +7 -0
- package/dist/loader-runner/worker.d.ts +14 -0
- package/dist/logging/Logger.d.ts +61 -0
- package/dist/logging/createConsoleLogger.d.ts +35 -0
- package/dist/logging/truncateArgs.d.ts +16 -0
- package/dist/node/NodeEnvironmentPlugin.d.ts +10 -0
- package/dist/node/NodeTemplatePlugin.d.ts +18 -0
- package/dist/node/NodeWatchFileSystem.d.ts +18 -0
- package/dist/node/nodeConsole.d.ts +15 -0
- package/dist/rspack.d.ts +16 -0
- package/dist/rspack.wasi-browser.js +101 -0
- package/dist/rspackOptionsApply.d.ts +4 -0
- package/dist/runtime/cssExtractHmr.d.ts +4 -0
- package/dist/runtime/moduleFederationDefaultRuntime.d.ts +2 -0
- package/dist/schema/config.d.ts +995 -0
- package/dist/schema/loaders.d.ts +399 -0
- package/dist/schema/plugins.d.ts +166 -0
- package/dist/schema/utils.d.ts +3 -0
- package/dist/schema/validate.d.ts +9 -0
- package/dist/sharing/ConsumeSharedPlugin.d.ts +41 -0
- package/dist/sharing/ProvideSharedPlugin.d.ts +34 -0
- package/dist/sharing/SharePlugin.d.ts +51 -0
- package/dist/sharing/ShareRuntimePlugin.d.ts +9 -0
- package/dist/sharing/utils.d.ts +1 -0
- package/dist/stats/DefaultStatsFactoryPlugin.d.ts +4 -0
- package/dist/stats/DefaultStatsPresetPlugin.d.ts +4 -0
- package/dist/stats/DefaultStatsPrinterPlugin.d.ts +13 -0
- package/dist/stats/StatsFactory.d.ts +57 -0
- package/dist/stats/StatsPrinter.d.ts +57 -0
- package/dist/stats/statsFactoryUtils.d.ts +325 -0
- package/dist/swc.d.ts +7 -0
- package/dist/taps/compilation.d.ts +8 -0
- package/dist/taps/compiler.d.ts +2 -0
- package/dist/taps/contextModuleFactory.d.ts +2 -0
- package/dist/taps/index.d.ts +6 -0
- package/dist/taps/javascriptModules.d.ts +2 -0
- package/dist/taps/normalModuleFactory.d.ts +2 -0
- package/dist/taps/types.d.ts +11 -0
- package/dist/trace/index.d.ts +46 -0
- package/dist/trace/traceHookPlugin.d.ts +5 -0
- package/dist/util/ArrayQueue.d.ts +45 -0
- package/dist/util/AsyncTask.d.ts +7 -0
- package/dist/util/MergeCaller.d.ts +10 -0
- package/dist/util/SizeFormatHelpers.d.ts +10 -0
- package/dist/util/SplitChunkSize.d.ts +5 -0
- package/dist/util/assertNotNil.d.ts +1 -0
- package/dist/util/assetCondition.d.ts +2 -0
- package/dist/util/asyncLib.d.ts +54 -0
- package/dist/util/bindingVersionCheck.d.ts +5 -0
- package/dist/util/cleverMerge.d.ts +24 -0
- package/dist/util/comparators.d.ts +16 -0
- package/dist/util/createHash.d.ts +16 -0
- package/dist/util/createReadonlyMap.d.ts +1 -0
- package/dist/util/fake.d.ts +9 -0
- package/dist/util/fs.d.ts +352 -0
- package/dist/util/hash/index.d.ts +26 -0
- package/dist/util/hash/md4.d.ts +11 -0
- package/dist/util/hash/wasm-hash.d.ts +51 -0
- package/dist/util/hash/xxhash64.d.ts +11 -0
- package/dist/util/identifier.d.ts +31 -0
- package/dist/util/index.d.ts +11 -0
- package/dist/util/memoize.d.ts +2 -0
- package/dist/util/require.d.ts +3 -0
- package/dist/util/runtime.d.ts +2 -0
- package/dist/util/smartGrouping.d.ts +21 -0
- package/dist/util/source.d.ts +7 -0
- package/dist/wasi-worker-browser.mjs +34 -0
- package/package.json +3 -3
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
9
|
+
|
|
10
|
+
/*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/AbstractMethodError.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import WebpackError from "./WebpackError";
|
|
11
|
+
/**
|
|
12
|
+
* Error for abstract method
|
|
13
|
+
* @example
|
|
14
|
+
* class FooClass {
|
|
15
|
+
* abstractMethod() {
|
|
16
|
+
* throw new AbstractMethodError(); // error message: Abstract method FooClass.abstractMethod. Must be overridden.
|
|
17
|
+
* }
|
|
18
|
+
* }
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare class AbstractMethodError extends WebpackError {
|
|
22
|
+
constructor();
|
|
23
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/Cache.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import { AsyncParallelHook, AsyncSeriesBailHook, SyncHook } from "@rspack/lite-tapable";
|
|
11
|
+
import type { WebpackError } from "./WebpackError";
|
|
12
|
+
export interface Etag {
|
|
13
|
+
toString(): string;
|
|
14
|
+
}
|
|
15
|
+
export type CallbackCache<T> = (err?: WebpackError | null, result?: T) => void;
|
|
16
|
+
type GotHandler = (result: any | null, callback: (error: Error | null) => void) => void;
|
|
17
|
+
export declare class Cache {
|
|
18
|
+
static STAGE_DISK: number;
|
|
19
|
+
static STAGE_MEMORY: number;
|
|
20
|
+
static STAGE_DEFAULT: number;
|
|
21
|
+
static STAGE_NETWORK: number;
|
|
22
|
+
hooks: {
|
|
23
|
+
get: AsyncSeriesBailHook<[string, Etag | null, GotHandler[]], any>;
|
|
24
|
+
store: AsyncParallelHook<[string, Etag | null, any]>;
|
|
25
|
+
storeBuildDependencies: AsyncParallelHook<[Iterable<string>]>;
|
|
26
|
+
beginIdle: SyncHook<[]>;
|
|
27
|
+
endIdle: AsyncParallelHook<[]>;
|
|
28
|
+
shutdown: AsyncParallelHook<[]>;
|
|
29
|
+
};
|
|
30
|
+
constructor();
|
|
31
|
+
/**
|
|
32
|
+
* @param identifier the cache identifier
|
|
33
|
+
* @param etag the etag
|
|
34
|
+
* @param callback signals when the value is retrieved
|
|
35
|
+
* @returns
|
|
36
|
+
*/
|
|
37
|
+
get<T>(identifier: string, etag: Etag | null, callback: CallbackCache<T>): void;
|
|
38
|
+
/**
|
|
39
|
+
* @param identifier the cache identifier
|
|
40
|
+
* @param etag the etag
|
|
41
|
+
* @param data the value to store
|
|
42
|
+
* @param callback signals when the value is stored
|
|
43
|
+
* @returns
|
|
44
|
+
*/
|
|
45
|
+
store<T>(identifier: string, etag: Etag | null, data: T, callback: CallbackCache<void>): void;
|
|
46
|
+
/**
|
|
47
|
+
* After this method has succeeded the cache can only be restored when build dependencies are
|
|
48
|
+
* @param dependencies list of all build dependencies
|
|
49
|
+
* @param callback signals when the dependencies are stored
|
|
50
|
+
* @returns
|
|
51
|
+
*/
|
|
52
|
+
storeBuildDependencies(dependencies: Iterable<string>, callback: CallbackCache<void>): void;
|
|
53
|
+
beginIdle(): void;
|
|
54
|
+
/**
|
|
55
|
+
* @param callback signals when the call finishes
|
|
56
|
+
* @returns
|
|
57
|
+
*/
|
|
58
|
+
endIdle(callback: CallbackCache<void>): void;
|
|
59
|
+
/**
|
|
60
|
+
* @param callback signals when the call finishes
|
|
61
|
+
* @returns
|
|
62
|
+
*/
|
|
63
|
+
shutdown(callback: CallbackCache<void>): void;
|
|
64
|
+
}
|
|
65
|
+
export default Cache;
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/CacheFacade.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Cache, CallbackCache, Etag } from "./Cache";
|
|
11
|
+
import type { HashableObject, HashConstructor } from "./cache/getLazyHashedEtag";
|
|
12
|
+
import type WebpackError from "./WebpackError";
|
|
13
|
+
type CallbackNormalErrorCache<T> = (err?: WebpackError | null, result?: T) => void;
|
|
14
|
+
declare abstract class BaseCache {
|
|
15
|
+
abstract get<T>(callback: CallbackCache<T>): void;
|
|
16
|
+
abstract getPromise<T>(): Promise<T | undefined>;
|
|
17
|
+
abstract store<T>(data: T, callback: CallbackCache<void>): void;
|
|
18
|
+
abstract storePromise<T>(data: T): Promise<void>;
|
|
19
|
+
}
|
|
20
|
+
export declare class ItemCacheFacade implements BaseCache {
|
|
21
|
+
_cache: Cache;
|
|
22
|
+
_name: string;
|
|
23
|
+
_etag: Etag | null;
|
|
24
|
+
/**
|
|
25
|
+
* @param cache the root cache
|
|
26
|
+
* @param name the child cache item name
|
|
27
|
+
* @param etag the etag
|
|
28
|
+
* @returns
|
|
29
|
+
*/
|
|
30
|
+
constructor(cache: Cache, name: string, etag: Etag | null);
|
|
31
|
+
/**
|
|
32
|
+
* @param callback signals when the value is retrieved
|
|
33
|
+
* @returns
|
|
34
|
+
*/
|
|
35
|
+
get<T>(callback: CallbackCache<T>): void;
|
|
36
|
+
/**
|
|
37
|
+
* @returns promise with the data
|
|
38
|
+
*/
|
|
39
|
+
getPromise<T>(): Promise<T | undefined>;
|
|
40
|
+
/**
|
|
41
|
+
* @param data the value to store
|
|
42
|
+
* @param callback signals when the value is stored
|
|
43
|
+
* @returns
|
|
44
|
+
*/
|
|
45
|
+
store<T>(data: T, callback: CallbackCache<void>): void;
|
|
46
|
+
/**
|
|
47
|
+
* @param data the value to store
|
|
48
|
+
* @returns promise signals when the value is stored
|
|
49
|
+
*/
|
|
50
|
+
storePromise<T>(data: T): Promise<void>;
|
|
51
|
+
/**
|
|
52
|
+
* @param computer function to compute the value if not cached
|
|
53
|
+
* @param callback signals when the value is retrieved
|
|
54
|
+
* @returns
|
|
55
|
+
*/
|
|
56
|
+
provide<T>(computer: (callback: CallbackNormalErrorCache<T>) => void, callback: CallbackNormalErrorCache<T>): void;
|
|
57
|
+
/**
|
|
58
|
+
* @param computer function to compute the value if not cached
|
|
59
|
+
* @returns promise with the data
|
|
60
|
+
*/
|
|
61
|
+
providePromise<T>(computer: () => Promise<T> | T): Promise<T>;
|
|
62
|
+
}
|
|
63
|
+
export declare class CacheFacade {
|
|
64
|
+
_name: string;
|
|
65
|
+
_cache: Cache;
|
|
66
|
+
_hashFunction: string | HashConstructor;
|
|
67
|
+
/**
|
|
68
|
+
* @param cache the root cache
|
|
69
|
+
* @param name the child cache name
|
|
70
|
+
* @param hashFunction the hash function to use
|
|
71
|
+
*/
|
|
72
|
+
constructor(cache: Cache, name: string, hashFunction: string | HashConstructor);
|
|
73
|
+
/**
|
|
74
|
+
* @param name the child cache name#
|
|
75
|
+
* @returns child cache
|
|
76
|
+
*/
|
|
77
|
+
getChildCache(name: string): CacheFacade;
|
|
78
|
+
/**
|
|
79
|
+
* @param identifier the cache identifier
|
|
80
|
+
* @param etag the etag
|
|
81
|
+
* @returns item cache
|
|
82
|
+
*/
|
|
83
|
+
getItemCache(identifier: string, etag: Etag | null): ItemCacheFacade;
|
|
84
|
+
/**
|
|
85
|
+
* @param obj an hashable object
|
|
86
|
+
* @returns an etag that is lazy hashed
|
|
87
|
+
*/
|
|
88
|
+
getLazyHashedEtag(obj: HashableObject): Etag;
|
|
89
|
+
/**
|
|
90
|
+
* @param a an etag
|
|
91
|
+
* @param b another etag
|
|
92
|
+
* @returns an etag that represents both
|
|
93
|
+
*/
|
|
94
|
+
mergeEtags(a: Etag, b: Etag): Etag;
|
|
95
|
+
/**
|
|
96
|
+
* @param identifier the cache identifier
|
|
97
|
+
* @param etag the etag
|
|
98
|
+
* @param callback signals when the value is retrieved
|
|
99
|
+
* @returns
|
|
100
|
+
*/
|
|
101
|
+
get<T>(identifier: string, etag: Etag | null, callback: CallbackCache<T>): void;
|
|
102
|
+
/**
|
|
103
|
+
* @param identifier the cache identifier
|
|
104
|
+
* @param etag the etag
|
|
105
|
+
* @returns promise with the data
|
|
106
|
+
*/
|
|
107
|
+
getPromise<T>(identifier: string, etag: Etag | null): Promise<T | undefined>;
|
|
108
|
+
/**
|
|
109
|
+
* @param identifier the cache identifier
|
|
110
|
+
* @param etag the etag
|
|
111
|
+
* @param data the value to store
|
|
112
|
+
* @param callback signals when the value is stored
|
|
113
|
+
* @returns
|
|
114
|
+
*/
|
|
115
|
+
store<T>(identifier: string, etag: Etag | null, data: T, callback: CallbackCache<void>): void;
|
|
116
|
+
/**
|
|
117
|
+
* @param identifier the cache identifier
|
|
118
|
+
* @param etag the etag
|
|
119
|
+
* @param data the value to store
|
|
120
|
+
* @returns promise signals when the value is stored
|
|
121
|
+
*/
|
|
122
|
+
storePromise<T>(identifier: string, etag: Etag | null, data: T): Promise<void>;
|
|
123
|
+
/**
|
|
124
|
+
* @param identifier the cache identifier
|
|
125
|
+
* @param etag the etag
|
|
126
|
+
* @param computer function to compute the value if not cached
|
|
127
|
+
* @param callback signals when the value is retrieved
|
|
128
|
+
* @returns
|
|
129
|
+
*/
|
|
130
|
+
provide<T>(identifier: string, etag: Etag | null, computer: (callback: CallbackNormalErrorCache<T>) => void, callback: CallbackNormalErrorCache<T>): void;
|
|
131
|
+
/**
|
|
132
|
+
* @param identifier the cache identifier
|
|
133
|
+
* @param etag the etag
|
|
134
|
+
* @param computer function to compute the value if not cached
|
|
135
|
+
* @returns promise with the data
|
|
136
|
+
*/
|
|
137
|
+
providePromise<T>(identifier: string, etag: Etag | null, computer: () => Promise<T> | T): Promise<{} | T | null>;
|
|
138
|
+
}
|
|
139
|
+
export default CacheFacade;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3bb53f36a5b8fc6bc1bd976ed7af161bd80/lib/DllPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler } from "../Compiler";
|
|
11
|
+
export type DllPluginOptions = {
|
|
12
|
+
/**
|
|
13
|
+
* Context of requests in the manifest file (defaults to the webpack context).
|
|
14
|
+
*/
|
|
15
|
+
context?: string;
|
|
16
|
+
/**
|
|
17
|
+
* If true, only entry points will be exposed.
|
|
18
|
+
* @default true
|
|
19
|
+
*/
|
|
20
|
+
entryOnly?: boolean;
|
|
21
|
+
/**
|
|
22
|
+
* If true, manifest json file (output) will be formatted.
|
|
23
|
+
*/
|
|
24
|
+
format?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Name of the exposed dll function (external name, use value of 'output.library').
|
|
27
|
+
*/
|
|
28
|
+
name?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Absolute path to the manifest json file (output).
|
|
31
|
+
*/
|
|
32
|
+
path: string;
|
|
33
|
+
/**
|
|
34
|
+
* Type of the dll bundle (external type, use value of 'output.libraryTarget').
|
|
35
|
+
*/
|
|
36
|
+
type?: string;
|
|
37
|
+
};
|
|
38
|
+
export declare class DllPlugin {
|
|
39
|
+
private options;
|
|
40
|
+
constructor(options: DllPluginOptions);
|
|
41
|
+
apply(compiler: Compiler): void;
|
|
42
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3bb53f36a5b8fc6bc1bd976ed7af161bd80/lib/DllReferencePlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { JsBuildMeta } from "@rspack/binding";
|
|
11
|
+
import type { Compiler } from "../Compiler";
|
|
12
|
+
export type DllReferencePluginOptions = {
|
|
13
|
+
/**
|
|
14
|
+
* Context of requests in the manifest (or content property) as absolute path.
|
|
15
|
+
*/
|
|
16
|
+
context?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Extensions used to resolve modules in the dll bundle (only used when using 'scope').
|
|
19
|
+
*/
|
|
20
|
+
extensions?: string[];
|
|
21
|
+
/**
|
|
22
|
+
* An object containing content and name or a string to the absolute path of the JSON manifest to be loaded upon compilation.
|
|
23
|
+
*/
|
|
24
|
+
manifest: string | DllReferencePluginOptionsManifest;
|
|
25
|
+
/**
|
|
26
|
+
* The name where the dll is exposed (external name, defaults to manifest.name).
|
|
27
|
+
*/
|
|
28
|
+
name?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Prefix which is used for accessing the content of the dll.
|
|
31
|
+
*/
|
|
32
|
+
scope?: string;
|
|
33
|
+
/**
|
|
34
|
+
* How the dll is exposed (libraryTarget, defaults to manifest.type).
|
|
35
|
+
*/
|
|
36
|
+
sourceType?: DllReferencePluginOptionsSourceType;
|
|
37
|
+
/**
|
|
38
|
+
* The way how the export of the dll bundle is used.
|
|
39
|
+
*/
|
|
40
|
+
type?: "require" | "object";
|
|
41
|
+
} | {
|
|
42
|
+
/**
|
|
43
|
+
* The mappings from request to module info.
|
|
44
|
+
*/
|
|
45
|
+
content: DllReferencePluginOptionsContent;
|
|
46
|
+
/**
|
|
47
|
+
* Context of requests in the manifest (or content property) as absolute path.
|
|
48
|
+
*/
|
|
49
|
+
context?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Extensions used to resolve modules in the dll bundle (only used when using 'scope').
|
|
52
|
+
*/
|
|
53
|
+
extensions?: string[];
|
|
54
|
+
/**
|
|
55
|
+
* The name where the dll is exposed (external name).
|
|
56
|
+
*/
|
|
57
|
+
name: string;
|
|
58
|
+
/**
|
|
59
|
+
* Prefix which is used for accessing the content of the dll.
|
|
60
|
+
*/
|
|
61
|
+
scope?: string;
|
|
62
|
+
/**
|
|
63
|
+
* How the dll is exposed (libraryTarget).
|
|
64
|
+
*/
|
|
65
|
+
sourceType?: DllReferencePluginOptionsSourceType;
|
|
66
|
+
/**
|
|
67
|
+
* The way how the export of the dll bundle is used.
|
|
68
|
+
*/
|
|
69
|
+
type?: "require" | "object";
|
|
70
|
+
};
|
|
71
|
+
/**
|
|
72
|
+
* The type how the dll is exposed (external type).
|
|
73
|
+
*/
|
|
74
|
+
export type DllReferencePluginOptionsSourceType = "var" | "assign" | "this" | "window" | "global" | "commonjs" | "commonjs2" | "commonjs-module" | "amd" | "amd-require" | "umd" | "umd2" | "jsonp" | "system";
|
|
75
|
+
/**
|
|
76
|
+
* An object containing content, name and type.
|
|
77
|
+
*/
|
|
78
|
+
export interface DllReferencePluginOptionsManifest {
|
|
79
|
+
/**
|
|
80
|
+
* The mappings from request to module info.
|
|
81
|
+
*/
|
|
82
|
+
content: DllReferencePluginOptionsContent;
|
|
83
|
+
/**
|
|
84
|
+
* The name where the dll is exposed (external name).
|
|
85
|
+
*/
|
|
86
|
+
name?: string;
|
|
87
|
+
/**
|
|
88
|
+
* The type how the dll is exposed (external type).
|
|
89
|
+
*/
|
|
90
|
+
type?: DllReferencePluginOptionsSourceType;
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* The mappings from request to module info.
|
|
94
|
+
*/
|
|
95
|
+
export interface DllReferencePluginOptionsContent {
|
|
96
|
+
/**
|
|
97
|
+
* Module info.
|
|
98
|
+
*/
|
|
99
|
+
[k: string]: {
|
|
100
|
+
/**
|
|
101
|
+
* Meta information about the module.
|
|
102
|
+
*/
|
|
103
|
+
buildMeta?: JsBuildMeta;
|
|
104
|
+
/**
|
|
105
|
+
* Information about the provided exports of the module.
|
|
106
|
+
*/
|
|
107
|
+
exports?: string[] | true;
|
|
108
|
+
/**
|
|
109
|
+
* Module ID.
|
|
110
|
+
*/
|
|
111
|
+
id?: string | number;
|
|
112
|
+
};
|
|
113
|
+
}
|
|
114
|
+
export declare class DllReferencePlugin {
|
|
115
|
+
private options;
|
|
116
|
+
private errors;
|
|
117
|
+
constructor(options: DllReferencePluginOptions);
|
|
118
|
+
apply(compiler: Compiler): void;
|
|
119
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/EntryOptionPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler, EntryDescriptionNormalized, EntryNormalized } from "..";
|
|
11
|
+
import type { EntryOptions } from "../builtin-plugin";
|
|
12
|
+
export declare class EntryOptionPlugin {
|
|
13
|
+
/**
|
|
14
|
+
* @param compiler the compiler instance one is tapping into
|
|
15
|
+
* @returns
|
|
16
|
+
*/
|
|
17
|
+
apply(compiler: Compiler): void;
|
|
18
|
+
/**
|
|
19
|
+
* @param compiler the compiler
|
|
20
|
+
* @param context context directory
|
|
21
|
+
* @param entry request
|
|
22
|
+
* @returns
|
|
23
|
+
*/
|
|
24
|
+
static applyEntryOption(compiler: Compiler, context: string, entry: EntryNormalized): void;
|
|
25
|
+
/**
|
|
26
|
+
* @param compiler the compiler
|
|
27
|
+
* @param name entry name
|
|
28
|
+
* @param desc entry description
|
|
29
|
+
* @returns options for the entry
|
|
30
|
+
*/
|
|
31
|
+
static entryDescriptionToOptions(compiler: Compiler, name: string, desc: EntryDescriptionNormalized): EntryOptions;
|
|
32
|
+
}
|
|
33
|
+
export default EntryOptionPlugin;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/EnvironmentPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler } from "../Compiler";
|
|
11
|
+
declare class EnvironmentPlugin {
|
|
12
|
+
keys: string[];
|
|
13
|
+
defaultValues: Record<string, string | undefined | null>;
|
|
14
|
+
constructor(...keys: string[] | [Record<string, string | undefined | null> | string | string[]]);
|
|
15
|
+
/**
|
|
16
|
+
* Apply the plugin
|
|
17
|
+
* @param compiler the compiler instance
|
|
18
|
+
* @returns
|
|
19
|
+
*/
|
|
20
|
+
apply(compiler: Compiler): void;
|
|
21
|
+
}
|
|
22
|
+
export { EnvironmentPlugin };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/HookWebpackError.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Callback } from "@rspack/lite-tapable";
|
|
11
|
+
import WebpackError from "./WebpackError";
|
|
12
|
+
export declare class HookWebpackError extends WebpackError {
|
|
13
|
+
hook: string;
|
|
14
|
+
error: Error;
|
|
15
|
+
/**
|
|
16
|
+
* Creates an instance of HookWebpackError.
|
|
17
|
+
* @param error inner error
|
|
18
|
+
* @param hook name of hook
|
|
19
|
+
*/
|
|
20
|
+
constructor(error: Error, hook: string);
|
|
21
|
+
}
|
|
22
|
+
export default HookWebpackError;
|
|
23
|
+
/**
|
|
24
|
+
* @param error an error
|
|
25
|
+
* @param hook name of the hook
|
|
26
|
+
* @returns a webpack error
|
|
27
|
+
*/
|
|
28
|
+
export declare const makeWebpackError: (error: Error, hook: string) => WebpackError;
|
|
29
|
+
/**
|
|
30
|
+
* @param callback webpack error callback
|
|
31
|
+
* @param hook name of hook
|
|
32
|
+
* @returns generic callback
|
|
33
|
+
*/
|
|
34
|
+
export declare const makeWebpackErrorCallback: <T>(callback: (error?: WebpackError | null, result?: T) => void, hook: string) => Callback<Error, T>;
|
|
35
|
+
/**
|
|
36
|
+
* @param fn function which will be wrapping in try catch
|
|
37
|
+
* @param hook name of hook
|
|
38
|
+
* @returns the result
|
|
39
|
+
*/
|
|
40
|
+
export declare const tryRunOrWebpackError: <T>(fn: () => T, hook: string) => T;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/IgnoreWarningsPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler, IgnoreWarningsNormalized, RspackPluginInstance } from "..";
|
|
11
|
+
declare class IgnoreWarningsPlugin implements RspackPluginInstance {
|
|
12
|
+
_ignorePattern: IgnoreWarningsNormalized;
|
|
13
|
+
name: string;
|
|
14
|
+
/**
|
|
15
|
+
* @param ignoreWarnings conditions to ignore warnings
|
|
16
|
+
*/
|
|
17
|
+
constructor(ignorePattern: IgnoreWarningsNormalized);
|
|
18
|
+
/**
|
|
19
|
+
* Apply the plugin
|
|
20
|
+
* @param compiler the compiler instance
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
apply(compiler: Compiler): void;
|
|
24
|
+
}
|
|
25
|
+
export default IgnoreWarningsPlugin;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/LoaderOptionsPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler } from "../Compiler";
|
|
11
|
+
import type { MatchObject } from "./ModuleFilenameHelpers";
|
|
12
|
+
type LoaderOptionsPluginOptions = MatchObject & {
|
|
13
|
+
[key: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
export declare class LoaderOptionsPlugin {
|
|
16
|
+
options: LoaderOptionsPluginOptions;
|
|
17
|
+
/**
|
|
18
|
+
* @param options options object
|
|
19
|
+
*/
|
|
20
|
+
constructor(options?: LoaderOptionsPluginOptions);
|
|
21
|
+
/**
|
|
22
|
+
* Apply the plugin
|
|
23
|
+
* @param compiler the compiler instance
|
|
24
|
+
* @returns
|
|
25
|
+
*/
|
|
26
|
+
apply(compiler: Compiler): void;
|
|
27
|
+
}
|
|
28
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/LoaderTargetPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler } from "../Compiler";
|
|
11
|
+
import type { Target } from "../config";
|
|
12
|
+
export declare class LoaderTargetPlugin {
|
|
13
|
+
readonly target: Target;
|
|
14
|
+
/**
|
|
15
|
+
* @param target the target
|
|
16
|
+
*/
|
|
17
|
+
constructor(target: Target);
|
|
18
|
+
/**
|
|
19
|
+
* Apply the plugin
|
|
20
|
+
* @param compiler the compiler instance
|
|
21
|
+
* @returns
|
|
22
|
+
*/
|
|
23
|
+
apply(compiler: Compiler): void;
|
|
24
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/ModuleFilenameHelpers.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
type Matcher = string | RegExp | (string | RegExp)[];
|
|
11
|
+
/**
|
|
12
|
+
* Returns a function that returns the string with the token replaced with the replacement
|
|
13
|
+
* @example
|
|
14
|
+
* ```js
|
|
15
|
+
* const test = asRegExp("test");
|
|
16
|
+
* test.test("test"); // true
|
|
17
|
+
*
|
|
18
|
+
* const test2 = asRegExp(/test/);
|
|
19
|
+
* test2.test("test"); // true
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
export declare const asRegExp: (test: string | RegExp) => RegExp;
|
|
23
|
+
export declare const matchPart: (str: string, test: Matcher) => boolean;
|
|
24
|
+
export interface MatchObject {
|
|
25
|
+
test?: Matcher;
|
|
26
|
+
include?: Matcher;
|
|
27
|
+
exclude?: Matcher;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Tests if a string matches a match object. The match object can have the following properties:
|
|
31
|
+
* - `test`: a RegExp or an array of RegExp
|
|
32
|
+
* - `include`: a RegExp or an array of RegExp
|
|
33
|
+
* - `exclude`: a RegExp or an array of RegExp
|
|
34
|
+
*
|
|
35
|
+
* The `test` property is tested first, then `include` and then `exclude`.
|
|
36
|
+
*
|
|
37
|
+
* @example
|
|
38
|
+
* ```js
|
|
39
|
+
* ModuleFilenameHelpers.matchObject({ test: "foo.js" }, "foo.js"); // true
|
|
40
|
+
* ModuleFilenameHelpers.matchObject({ test: /^foo/ }, "foo.js"); // true
|
|
41
|
+
* ModuleFilenameHelpers.matchObject({ test: [/^foo/, "bar"] }, "foo.js"); // true
|
|
42
|
+
* ModuleFilenameHelpers.matchObject({ test: [/^foo/, "bar"] }, "baz.js"); // false
|
|
43
|
+
* ModuleFilenameHelpers.matchObject({ include: "foo.js" }, "foo.js"); // true
|
|
44
|
+
* ModuleFilenameHelpers.matchObject({ include: "foo.js" }, "bar.js"); // false
|
|
45
|
+
* ModuleFilenameHelpers.matchObject({ include: /^foo/ }, "foo.js"); // true
|
|
46
|
+
* ModuleFilenameHelpers.matchObject({ include: [/^foo/, "bar"] }, "foo.js"); // true
|
|
47
|
+
* ModuleFilenameHelpers.matchObject({ include: [/^foo/, "bar"] }, "baz.js"); // false
|
|
48
|
+
* ModuleFilenameHelpers.matchObject({ exclude: "foo.js" }, "foo.js"); // false
|
|
49
|
+
* ModuleFilenameHelpers.matchObject({ exclude: [/^foo/, "bar"] }, "foo.js"); // false
|
|
50
|
+
* ```
|
|
51
|
+
*/
|
|
52
|
+
export declare const matchObject: (obj: MatchObject, str: string) => boolean;
|
|
53
|
+
export {};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/NormalModuleReplacementPlugin.js
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/webpack/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler } from "../Compiler";
|
|
11
|
+
import type { ResolveData } from "../Module";
|
|
12
|
+
type ModuleReplacer = (createData: ResolveData) => void;
|
|
13
|
+
export declare class NormalModuleReplacementPlugin {
|
|
14
|
+
readonly resourceRegExp: RegExp;
|
|
15
|
+
readonly newResource: string | ModuleReplacer;
|
|
16
|
+
/**
|
|
17
|
+
* Create an instance of the plugin
|
|
18
|
+
* @param resourceRegExp the resource matcher
|
|
19
|
+
* @param newResource the resource replacement
|
|
20
|
+
*/
|
|
21
|
+
constructor(resourceRegExp: RegExp, newResource: string | ModuleReplacer);
|
|
22
|
+
/**
|
|
23
|
+
* Apply the plugin
|
|
24
|
+
* @param compiler the compiler instance
|
|
25
|
+
* @returns
|
|
26
|
+
*/
|
|
27
|
+
apply(compiler: Compiler): void;
|
|
28
|
+
}
|
|
29
|
+
export {};
|