@rspack-canary/browser 1.4.12-canary-c9012b88-20250801081627 → 1.4.12-canary-4f117639-20250801093856
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/rspack.wasm32-wasi.wasm +0 -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,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/WebpackError.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 { DependencyLocation } from "@rspack/binding";
|
|
11
|
+
import type { Chunk } from "../Chunk";
|
|
12
|
+
import type { Module } from "../Module";
|
|
13
|
+
export declare class WebpackError extends Error {
|
|
14
|
+
loc?: DependencyLocation;
|
|
15
|
+
file?: string;
|
|
16
|
+
chunk?: Chunk;
|
|
17
|
+
module?: null | Module;
|
|
18
|
+
details?: string;
|
|
19
|
+
hideStack?: boolean;
|
|
20
|
+
}
|
|
21
|
+
export default WebpackError;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/cache/getLazyHashedEtag.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 Hash from "../../util/hash";
|
|
11
|
+
export type HashConstructor = typeof Hash;
|
|
12
|
+
export interface HashableObject {
|
|
13
|
+
updateHash(hash: Hash): void;
|
|
14
|
+
}
|
|
15
|
+
declare class LazyHashedEtag {
|
|
16
|
+
_obj: HashableObject;
|
|
17
|
+
_hash?: string;
|
|
18
|
+
_hashFunction: string | HashConstructor;
|
|
19
|
+
/**
|
|
20
|
+
* @param obj object with updateHash method
|
|
21
|
+
* @param hashFunction the hash function to use
|
|
22
|
+
*/
|
|
23
|
+
constructor(obj: HashableObject, hashFunction?: string | HashConstructor);
|
|
24
|
+
/**
|
|
25
|
+
* @returns hash of object
|
|
26
|
+
*/
|
|
27
|
+
toString(): string;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @param obj object with updateHash method
|
|
31
|
+
* @param ashFunction the hash function to use
|
|
32
|
+
* @returns etag
|
|
33
|
+
*/
|
|
34
|
+
export declare const getter: (obj: HashableObject, hashFunction?: string | HashConstructor) => LazyHashedEtag;
|
|
35
|
+
export default getter;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/cache/mergeEtags.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 { Etag } from "../Cache";
|
|
11
|
+
/**
|
|
12
|
+
* @param first first
|
|
13
|
+
* @param second second
|
|
14
|
+
* @returns result
|
|
15
|
+
*/
|
|
16
|
+
export declare const mergeEtags: (first: Etag, second: Etag) => Etag;
|
|
17
|
+
export default mergeEtags;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is from
|
|
3
|
+
* https://github.com/webpack/loader-runner
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/loader-runner/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
declare class LoadingLoaderError extends Error {
|
|
11
|
+
constructor(message: string);
|
|
12
|
+
}
|
|
13
|
+
export default LoadingLoaderError;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { type JsLoaderContext, type JsLoaderItem } from "@rspack/binding";
|
|
2
|
+
import type { Compiler } from "../Compiler";
|
|
3
|
+
export declare class LoaderObject {
|
|
4
|
+
request: string;
|
|
5
|
+
path: string;
|
|
6
|
+
query: string;
|
|
7
|
+
fragment: string;
|
|
8
|
+
options?: string | object;
|
|
9
|
+
ident: string;
|
|
10
|
+
normal?: Function;
|
|
11
|
+
pitch?: Function;
|
|
12
|
+
raw?: boolean;
|
|
13
|
+
type?: "module" | "commonjs";
|
|
14
|
+
parallel?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* @internal This field is rspack internal. Do not edit.
|
|
17
|
+
*/
|
|
18
|
+
loaderItem: JsLoaderItem;
|
|
19
|
+
constructor(loaderItem: JsLoaderItem, compiler: Compiler);
|
|
20
|
+
get pitchExecuted(): boolean;
|
|
21
|
+
set pitchExecuted(value: boolean);
|
|
22
|
+
get normalExecuted(): boolean;
|
|
23
|
+
set normalExecuted(value: boolean);
|
|
24
|
+
set noPitch(value: boolean);
|
|
25
|
+
shouldYield(): boolean;
|
|
26
|
+
static __from_binding(loaderItem: JsLoaderItem, compiler: Compiler): LoaderObject;
|
|
27
|
+
static __to_binding(loader: LoaderObject): JsLoaderItem;
|
|
28
|
+
}
|
|
29
|
+
export declare function runLoaders(compiler: Compiler, context: JsLoaderContext): Promise<JsLoaderContext>;
|
|
30
|
+
export declare function parsePathQueryFragment(str: string): {
|
|
31
|
+
path: string;
|
|
32
|
+
query: string;
|
|
33
|
+
fragment: string;
|
|
34
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is from
|
|
3
|
+
* https://github.com/webpack/loader-runner
|
|
4
|
+
*
|
|
5
|
+
* MIT Licensed
|
|
6
|
+
* Author Tobias Koppers @sokra
|
|
7
|
+
* Copyright (c) JS Foundation and other contributors
|
|
8
|
+
* https://github.com/webpack/loader-runner/blob/main/LICENSE
|
|
9
|
+
*/
|
|
10
|
+
import type { Compiler } from "../exports";
|
|
11
|
+
import type { LoaderObject } from ".";
|
|
12
|
+
export default function loadLoader(loader: LoaderObject, compiler: Compiler, callback: (err: unknown) => void): void;
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import type { Tinypool } from "tinypool" with { "resolution-mode": "import" };
|
|
2
|
+
type RunOptions = Parameters<Tinypool["run"]>[1];
|
|
3
|
+
export interface WorkerResponseMessage {
|
|
4
|
+
type: "response";
|
|
5
|
+
id: number;
|
|
6
|
+
data: any;
|
|
7
|
+
}
|
|
8
|
+
export interface WorkerResponseErrorMessage {
|
|
9
|
+
type: "response-error";
|
|
10
|
+
id: number;
|
|
11
|
+
error: WorkerError;
|
|
12
|
+
}
|
|
13
|
+
interface WorkerDoneMessage {
|
|
14
|
+
type: "done";
|
|
15
|
+
data: WorkerArgs;
|
|
16
|
+
}
|
|
17
|
+
interface WorkerDoneErrorMessage {
|
|
18
|
+
type: "done-error";
|
|
19
|
+
error: WorkerError;
|
|
20
|
+
}
|
|
21
|
+
export interface WorkerRequestMessage {
|
|
22
|
+
type: "request";
|
|
23
|
+
id: number;
|
|
24
|
+
requestType: RequestType;
|
|
25
|
+
data: WorkerArgs;
|
|
26
|
+
}
|
|
27
|
+
export interface WorkerRequestSyncMessage {
|
|
28
|
+
type: "request-sync";
|
|
29
|
+
id: number;
|
|
30
|
+
requestType: RequestSyncType;
|
|
31
|
+
data: WorkerArgs;
|
|
32
|
+
sharedBuffer: SharedArrayBuffer;
|
|
33
|
+
}
|
|
34
|
+
export type WorkerMessage = WorkerResponseMessage | WorkerDoneMessage | WorkerRequestMessage | WorkerResponseErrorMessage | WorkerDoneErrorMessage | WorkerRequestSyncMessage;
|
|
35
|
+
export declare function isWorkerResponseMessage(message: WorkerMessage): message is WorkerResponseMessage;
|
|
36
|
+
export declare function isWorkerResponseErrorMessage(message: WorkerMessage): message is WorkerResponseErrorMessage;
|
|
37
|
+
export declare enum RequestType {
|
|
38
|
+
AddDependency = "AddDependency",
|
|
39
|
+
AddContextDependency = "AddContextDependency",
|
|
40
|
+
AddMissingDependency = "AddMissingDependency",
|
|
41
|
+
AddBuildDependency = "AddBuildDependency",
|
|
42
|
+
GetDependencies = "GetDependencies",
|
|
43
|
+
GetContextDependencies = "GetContextDependencies",
|
|
44
|
+
GetMissingDependencies = "GetMissingDependencies",
|
|
45
|
+
ClearDependencies = "ClearDependencies",
|
|
46
|
+
Resolve = "Resolve",
|
|
47
|
+
GetResolve = "GetResolve",
|
|
48
|
+
GetLogger = "GetLogger",
|
|
49
|
+
EmitError = "EmitError",
|
|
50
|
+
EmitWarning = "EmitWarning",
|
|
51
|
+
EmitFile = "EmitFile",
|
|
52
|
+
EmitDiagnostic = "EmitDiagnostic",
|
|
53
|
+
SetCacheable = "SetCacheable",
|
|
54
|
+
ImportModule = "ImportModule",
|
|
55
|
+
UpdateLoaderObjects = "UpdateLoaderObjects",
|
|
56
|
+
CompilationGetPath = "CompilationGetPath",
|
|
57
|
+
CompilationGetPathWithInfo = "CompilationGetPathWithInfo",
|
|
58
|
+
CompilationGetAssetPath = "CompilationGetAssetPath",
|
|
59
|
+
CompilationGetAssetPathWithInfo = "CompilationGetAssetPathWithInfo"
|
|
60
|
+
}
|
|
61
|
+
export declare enum RequestSyncType {
|
|
62
|
+
WaitForPendingRequest = "WaitForPendingRequest"
|
|
63
|
+
}
|
|
64
|
+
export type HandleIncomingRequest = (requestType: RequestType, ...args: any[]) => Promise<any> | any;
|
|
65
|
+
type WorkerArgs = any[];
|
|
66
|
+
export type WorkerError = Error;
|
|
67
|
+
export declare function serializeError(error: unknown): WorkerError;
|
|
68
|
+
export declare const run: (loaderName: string, task: any, options: RunOptions & {
|
|
69
|
+
handleIncomingRequest: HandleIncomingRequest;
|
|
70
|
+
}) => Promise<WorkerArgs>;
|
|
71
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { LoaderContext } from "../config/adapterRuleUse";
|
|
2
|
+
import type { Compiler } from "../exports";
|
|
3
|
+
import type { LoaderObject } from ".";
|
|
4
|
+
export declare function convertArgs(args: any[], raw: boolean): void;
|
|
5
|
+
export declare const loadLoader: (loaderObject: LoaderObject, compiler: Compiler) => Promise<void>;
|
|
6
|
+
export declare const runSyncOrAsync: (arg1: Function, arg2: LoaderContext<{}>, arg3: any[]) => Promise<any[]>;
|
|
7
|
+
export declare function extractLoaderName(loaderPath: string, cwd?: string): string;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type MessagePort } from "node:worker_threads";
|
|
2
|
+
import { JsLoaderState } from "@rspack/binding";
|
|
3
|
+
import type { LoaderContext } from "../config";
|
|
4
|
+
interface WorkerOptions {
|
|
5
|
+
loaderContext: LoaderContext;
|
|
6
|
+
loaderState: JsLoaderState;
|
|
7
|
+
args: any[];
|
|
8
|
+
workerData?: {
|
|
9
|
+
workerPort: MessagePort;
|
|
10
|
+
workerSyncPort: MessagePort;
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
declare function worker(workerOptions: WorkerOptions): void;
|
|
14
|
+
export default worker;
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/logging/Logger.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
|
+
export declare const LogType: Readonly<{
|
|
11
|
+
error: "error";
|
|
12
|
+
warn: "warn";
|
|
13
|
+
info: "info";
|
|
14
|
+
log: "log";
|
|
15
|
+
debug: "debug";
|
|
16
|
+
trace: "trace";
|
|
17
|
+
group: "group";
|
|
18
|
+
groupCollapsed: "groupCollapsed";
|
|
19
|
+
groupEnd: "groupEnd";
|
|
20
|
+
profile: "profile";
|
|
21
|
+
profileEnd: "profileEnd";
|
|
22
|
+
time: "time";
|
|
23
|
+
clear: "clear";
|
|
24
|
+
status: "status";
|
|
25
|
+
cache: "cache";
|
|
26
|
+
}>;
|
|
27
|
+
export declare function getLogTypeBitFlag(type: LogTypeEnum): number;
|
|
28
|
+
export declare function getLogTypesBitFlag(types: LogTypeEnum[]): number;
|
|
29
|
+
export type LogTypeEnum = (typeof LogType)[keyof typeof LogType];
|
|
30
|
+
declare const LOG_SYMBOL: unique symbol;
|
|
31
|
+
declare const TIMERS_SYMBOL: unique symbol;
|
|
32
|
+
declare const TIMERS_AGGREGATES_SYMBOL: unique symbol;
|
|
33
|
+
export type LogFunction = (type: LogTypeEnum, args: any[]) => void;
|
|
34
|
+
export type GetChildLogger = (name: string | (() => string)) => Logger;
|
|
35
|
+
export declare class Logger {
|
|
36
|
+
getChildLogger: GetChildLogger;
|
|
37
|
+
[LOG_SYMBOL]: any;
|
|
38
|
+
[TIMERS_SYMBOL]: any;
|
|
39
|
+
[TIMERS_AGGREGATES_SYMBOL]: any;
|
|
40
|
+
constructor(log: LogFunction, getChildLogger: GetChildLogger);
|
|
41
|
+
error(...args: any[]): void;
|
|
42
|
+
warn(...args: any[]): void;
|
|
43
|
+
info(...args: any[]): void;
|
|
44
|
+
log(...args: any[]): void;
|
|
45
|
+
debug(...args: string[]): void;
|
|
46
|
+
assert(assertion: any, ...args: any[]): void;
|
|
47
|
+
trace(): void;
|
|
48
|
+
clear(): void;
|
|
49
|
+
status(...args: any[]): void;
|
|
50
|
+
group(...args: any[]): void;
|
|
51
|
+
groupCollapsed(...args: any[]): void;
|
|
52
|
+
groupEnd(...args: any[]): void;
|
|
53
|
+
profile(label: any): void;
|
|
54
|
+
profileEnd(label: any): void;
|
|
55
|
+
time(label: any): void;
|
|
56
|
+
timeLog(label: any): void;
|
|
57
|
+
timeEnd(label: any): void;
|
|
58
|
+
timeAggregate(label: any): void;
|
|
59
|
+
timeAggregateEnd(label: any): void;
|
|
60
|
+
}
|
|
61
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/logging/createConsoleLogger.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 { FilterTypes } from "../config";
|
|
11
|
+
import { type LogTypeEnum } from "./Logger";
|
|
12
|
+
export type FilterFunction = (ident: string) => boolean;
|
|
13
|
+
export type LoggerConsole = {
|
|
14
|
+
clear: () => void;
|
|
15
|
+
trace: () => void;
|
|
16
|
+
info: (...args: any[]) => void;
|
|
17
|
+
log: (...args: any[]) => void;
|
|
18
|
+
warn: (...args: any[]) => void;
|
|
19
|
+
error: (...args: any[]) => void;
|
|
20
|
+
debug?: (...args: any[]) => void;
|
|
21
|
+
group?: (...args: any[]) => void;
|
|
22
|
+
groupCollapsed?: (...args: any[]) => void;
|
|
23
|
+
groupEnd?: (...args: any[]) => void;
|
|
24
|
+
status?: (...args: any[]) => void;
|
|
25
|
+
profile?: (...args: any[]) => void;
|
|
26
|
+
profileEnd?: (...args: any[]) => void;
|
|
27
|
+
logTime?: (...args: any[]) => void;
|
|
28
|
+
};
|
|
29
|
+
export type LoggerOptions = {
|
|
30
|
+
level: "none" | "error" | "warn" | "info" | "log" | "verbose" | boolean;
|
|
31
|
+
debug: FilterTypes | boolean;
|
|
32
|
+
console: LoggerConsole;
|
|
33
|
+
};
|
|
34
|
+
declare const createConsoleLogger: ({ level, debug, console }: LoggerOptions) => (name: string, type: LogTypeEnum, args: any[]) => void;
|
|
35
|
+
export { createConsoleLogger };
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/logging/truncateArgs.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
|
+
/**
|
|
11
|
+
* @param args items to be truncated
|
|
12
|
+
* @param maxLength maximum length of args including spaces between
|
|
13
|
+
* @returns truncated args
|
|
14
|
+
*/
|
|
15
|
+
declare const truncateArgs: (args: any[], maxLength: number) => string[];
|
|
16
|
+
export { truncateArgs };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Compiler } from "..";
|
|
2
|
+
import type { InfrastructureLogging } from "../config";
|
|
3
|
+
export interface NodeEnvironmentPluginOptions {
|
|
4
|
+
infrastructureLogging: InfrastructureLogging;
|
|
5
|
+
}
|
|
6
|
+
export default class NodeEnvironmentPlugin {
|
|
7
|
+
options: NodeEnvironmentPluginOptions;
|
|
8
|
+
constructor(options: NodeEnvironmentPluginOptions);
|
|
9
|
+
apply(compiler: Compiler): void;
|
|
10
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/node/NodeTemplatePlugin.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 NodeTemplatePluginOptions = {
|
|
12
|
+
asyncChunkLoading?: boolean;
|
|
13
|
+
};
|
|
14
|
+
export default class NodeTemplatePlugin {
|
|
15
|
+
private _options;
|
|
16
|
+
constructor(_options?: NodeTemplatePluginOptions);
|
|
17
|
+
apply(compiler: Compiler): void;
|
|
18
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/node/NodeWatchFileSystem.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 Watchpack from "watchpack";
|
|
11
|
+
import type { FileSystemInfoEntry, InputFileSystem, Watcher, WatchFileSystem } from "../util/fs";
|
|
12
|
+
export default class NodeWatchFileSystem implements WatchFileSystem {
|
|
13
|
+
inputFileSystem: InputFileSystem;
|
|
14
|
+
watcherOptions: Watchpack.WatchOptions;
|
|
15
|
+
watcher?: Watchpack;
|
|
16
|
+
constructor(inputFileSystem: InputFileSystem);
|
|
17
|
+
watch(files: Iterable<string>, directories: Iterable<string>, missing: Iterable<string>, startTime: number, options: Watchpack.WatchOptions, callback: (error: Error | null, fileTimeInfoEntries: Map<string, FileSystemInfoEntry | "ignore">, contextTimeInfoEntries: Map<string, FileSystemInfoEntry | "ignore">, changedFiles: Set<string>, removedFiles: Set<string>) => void, callbackUndelayed: (fileName: string, changeTime: number) => void): Watcher;
|
|
18
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The following code is modified based on
|
|
3
|
+
* https://github.com/webpack/webpack/blob/4b4ca3b/lib/node/nodeConsole.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 { LoggerConsole } from "../logging/createConsoleLogger";
|
|
11
|
+
export default function ({ colors, appendOnly, stream }: {
|
|
12
|
+
colors?: boolean;
|
|
13
|
+
appendOnly?: boolean;
|
|
14
|
+
stream: NodeJS.WritableStream;
|
|
15
|
+
}): LoggerConsole;
|
package/dist/rspack.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { Callback } from "@rspack/lite-tapable";
|
|
2
|
+
import { Compiler } from "./Compiler";
|
|
3
|
+
import { type RspackOptions } from "./config";
|
|
4
|
+
import { MultiCompiler, type MultiRspackOptions } from "./MultiCompiler";
|
|
5
|
+
import MultiStats from "./MultiStats";
|
|
6
|
+
import { Stats } from "./Stats";
|
|
7
|
+
declare function createMultiCompiler(options: MultiRspackOptions): MultiCompiler;
|
|
8
|
+
declare function createCompiler(userOptions: RspackOptions): Compiler;
|
|
9
|
+
declare function rspack(options: MultiRspackOptions): MultiCompiler;
|
|
10
|
+
declare function rspack(options: RspackOptions): Compiler;
|
|
11
|
+
declare function rspack(options: MultiRspackOptions | RspackOptions): MultiCompiler | Compiler;
|
|
12
|
+
declare function rspack(options: MultiRspackOptions, callback?: Callback<Error, MultiStats>): null | MultiCompiler;
|
|
13
|
+
declare function rspack(options: RspackOptions, callback?: Callback<Error, Stats>): null | Compiler;
|
|
14
|
+
declare function rspack(options: MultiRspackOptions | RspackOptions, callback?: Callback<Error, MultiStats | Stats>): null | MultiCompiler | Compiler;
|
|
15
|
+
export { createCompiler, createMultiCompiler, MultiStats, rspack, Stats };
|
|
16
|
+
export default rspack;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { createOnMessage as __wasmCreateOnMessageForFsProxy, getDefaultContext as __emnapiGetDefaultContext, instantiateNapiModule as __emnapiInstantiateNapiModule, WASI as __WASI } from '@napi-rs/wasm-runtime';
|
|
2
|
+
import { memfs, Buffer } from '@napi-rs/wasm-runtime/fs';
|
|
3
|
+
export const { fs: __fs, vol: __volume } = memfs();
|
|
4
|
+
const __wasi = new __WASI({
|
|
5
|
+
version: 'preview1',
|
|
6
|
+
fs: __fs,
|
|
7
|
+
preopens: {
|
|
8
|
+
'/': '/'
|
|
9
|
+
}
|
|
10
|
+
});
|
|
11
|
+
const __wasmUrl = new URL('./rspack.wasm32-wasi.wasm', import.meta.url).href;
|
|
12
|
+
const __emnapiContext = __emnapiGetDefaultContext();
|
|
13
|
+
__emnapiContext.feature.Buffer = Buffer;
|
|
14
|
+
const __sharedMemory = new WebAssembly.Memory({
|
|
15
|
+
initial: 16384,
|
|
16
|
+
maximum: 65536,
|
|
17
|
+
shared: true
|
|
18
|
+
});
|
|
19
|
+
const __wasmFile = await fetch(__wasmUrl).then((res)=>res.arrayBuffer());
|
|
20
|
+
const { instance: __napiInstance, module: __wasiModule, napiModule: __napiModule } = await __emnapiInstantiateNapiModule(__wasmFile, {
|
|
21
|
+
context: __emnapiContext,
|
|
22
|
+
asyncWorkPoolSize: 4,
|
|
23
|
+
wasi: __wasi,
|
|
24
|
+
onCreateWorker () {
|
|
25
|
+
const worker = new Worker(new URL('./wasi-worker-browser.mjs', import.meta.url), {
|
|
26
|
+
type: 'module'
|
|
27
|
+
});
|
|
28
|
+
worker.addEventListener('message', __wasmCreateOnMessageForFsProxy(__fs));
|
|
29
|
+
return worker;
|
|
30
|
+
},
|
|
31
|
+
overwriteImports (importObject) {
|
|
32
|
+
importObject.env = {
|
|
33
|
+
...importObject.env,
|
|
34
|
+
...importObject.napi,
|
|
35
|
+
...importObject.emnapi,
|
|
36
|
+
memory: __sharedMemory
|
|
37
|
+
};
|
|
38
|
+
return importObject;
|
|
39
|
+
},
|
|
40
|
+
beforeInit ({ instance }) {
|
|
41
|
+
for (const name of Object.keys(instance.exports))if (name.startsWith('__napi_register__')) instance.exports[name]();
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
export default __napiModule.exports;
|
|
45
|
+
export const Assets = __napiModule.exports.Assets;
|
|
46
|
+
export const AsyncDependenciesBlock = __napiModule.exports.AsyncDependenciesBlock;
|
|
47
|
+
export const Chunk = __napiModule.exports.Chunk;
|
|
48
|
+
export const ChunkGraph = __napiModule.exports.ChunkGraph;
|
|
49
|
+
export const ChunkGroup = __napiModule.exports.ChunkGroup;
|
|
50
|
+
export const Chunks = __napiModule.exports.Chunks;
|
|
51
|
+
export const CodeGenerationResult = __napiModule.exports.CodeGenerationResult;
|
|
52
|
+
export const CodeGenerationResults = __napiModule.exports.CodeGenerationResults;
|
|
53
|
+
export const ConcatenatedModule = __napiModule.exports.ConcatenatedModule;
|
|
54
|
+
export const ContextModule = __napiModule.exports.ContextModule;
|
|
55
|
+
export const Dependency = __napiModule.exports.Dependency;
|
|
56
|
+
export const Diagnostics = __napiModule.exports.Diagnostics;
|
|
57
|
+
export const EntryDataDto = __napiModule.exports.EntryDataDto;
|
|
58
|
+
export const EntryDataDTO = __napiModule.exports.EntryDataDTO;
|
|
59
|
+
export const EntryDependency = __napiModule.exports.EntryDependency;
|
|
60
|
+
export const EntryOptionsDto = __napiModule.exports.EntryOptionsDto;
|
|
61
|
+
export const EntryOptionsDTO = __napiModule.exports.EntryOptionsDTO;
|
|
62
|
+
export const ExternalModule = __napiModule.exports.ExternalModule;
|
|
63
|
+
export const JsCompilation = __napiModule.exports.JsCompilation;
|
|
64
|
+
export const JsCompiler = __napiModule.exports.JsCompiler;
|
|
65
|
+
export const JsContextModuleFactoryAfterResolveData = __napiModule.exports.JsContextModuleFactoryAfterResolveData;
|
|
66
|
+
export const JsContextModuleFactoryBeforeResolveData = __napiModule.exports.JsContextModuleFactoryBeforeResolveData;
|
|
67
|
+
export const JsDependencies = __napiModule.exports.JsDependencies;
|
|
68
|
+
export const JsEntries = __napiModule.exports.JsEntries;
|
|
69
|
+
export const JsExportsInfo = __napiModule.exports.JsExportsInfo;
|
|
70
|
+
export const JsModuleGraph = __napiModule.exports.JsModuleGraph;
|
|
71
|
+
export const JsResolver = __napiModule.exports.JsResolver;
|
|
72
|
+
export const JsResolverFactory = __napiModule.exports.JsResolverFactory;
|
|
73
|
+
export const JsStats = __napiModule.exports.JsStats;
|
|
74
|
+
export const KnownBuildInfo = __napiModule.exports.KnownBuildInfo;
|
|
75
|
+
export const Module = __napiModule.exports.Module;
|
|
76
|
+
export const ModuleGraphConnection = __napiModule.exports.ModuleGraphConnection;
|
|
77
|
+
export const NativeWatcher = __napiModule.exports.NativeWatcher;
|
|
78
|
+
export const NativeWatchResult = __napiModule.exports.NativeWatchResult;
|
|
79
|
+
export const NormalModule = __napiModule.exports.NormalModule;
|
|
80
|
+
export const RawExternalItemFnCtx = __napiModule.exports.RawExternalItemFnCtx;
|
|
81
|
+
export const ReadonlyResourceData = __napiModule.exports.ReadonlyResourceData;
|
|
82
|
+
export const ResolverFactory = __napiModule.exports.ResolverFactory;
|
|
83
|
+
export const Sources = __napiModule.exports.Sources;
|
|
84
|
+
export const async = __napiModule.exports.async;
|
|
85
|
+
export const BuiltinPluginName = __napiModule.exports.BuiltinPluginName;
|
|
86
|
+
export const cleanupGlobalTrace = __napiModule.exports.cleanupGlobalTrace;
|
|
87
|
+
export const EnforceExtension = __napiModule.exports.EnforceExtension;
|
|
88
|
+
export const EXPECTED_RSPACK_CORE_VERSION = __napiModule.exports.EXPECTED_RSPACK_CORE_VERSION;
|
|
89
|
+
export const formatDiagnostic = __napiModule.exports.formatDiagnostic;
|
|
90
|
+
export const JsLoaderState = __napiModule.exports.JsLoaderState;
|
|
91
|
+
export const JsRspackSeverity = __napiModule.exports.JsRspackSeverity;
|
|
92
|
+
export const loadBrowserslist = __napiModule.exports.loadBrowserslist;
|
|
93
|
+
export const minify = __napiModule.exports.minify;
|
|
94
|
+
export const minifySync = __napiModule.exports.minifySync;
|
|
95
|
+
export const RawRuleSetConditionType = __napiModule.exports.RawRuleSetConditionType;
|
|
96
|
+
export const registerGlobalTrace = __napiModule.exports.registerGlobalTrace;
|
|
97
|
+
export const RegisterJsTapKind = __napiModule.exports.RegisterJsTapKind;
|
|
98
|
+
export const sync = __napiModule.exports.sync;
|
|
99
|
+
export const syncTraceEvent = __napiModule.exports.syncTraceEvent;
|
|
100
|
+
export const transform = __napiModule.exports.transform;
|
|
101
|
+
export const transformSync = __napiModule.exports.transformSync;
|
|
Binary file
|