@rspack-debug/browser 0.0.0-alpha.0 → 1.6.4

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.
Files changed (252) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +15 -0
  3. package/dist/BuildInfo.d.ts +17 -0
  4. package/dist/Chunk.d.ts +16 -0
  5. package/dist/ChunkGraph.d.ts +9 -0
  6. package/dist/Chunks.d.ts +12 -0
  7. package/dist/CodeGenerationResults.d.ts +1 -0
  8. package/dist/Compilation.d.ts +417 -0
  9. package/dist/Compiler.d.ts +223 -0
  10. package/dist/ConcatenatedModule.d.ts +1 -0
  11. package/dist/ContextModule.d.ts +1 -0
  12. package/dist/ContextModuleFactory.d.ts +13 -0
  13. package/dist/Diagnostics.d.ts +7 -0
  14. package/dist/Entrypoint.d.ts +2 -0
  15. package/dist/ErrorHelpers.d.ts +3 -0
  16. package/dist/ExecuteModulePlugin.d.ts +4 -0
  17. package/dist/ExportsInfo.d.ts +20 -0
  18. package/dist/ExternalModule.d.ts +1 -0
  19. package/dist/FileSystem.d.ts +54 -0
  20. package/dist/FileSystemInfo.d.ts +5 -0
  21. package/dist/Module.d.ts +42 -0
  22. package/dist/ModuleGraph.d.ts +19 -0
  23. package/dist/ModuleTypeConstants.d.ts +8 -0
  24. package/dist/MultiCompiler.d.ts +82 -0
  25. package/dist/MultiStats.d.ts +23 -0
  26. package/dist/MultiWatching.d.ts +27 -0
  27. package/dist/NativeWatchFileSystem.d.ts +23 -0
  28. package/dist/NormalModule.d.ts +15 -0
  29. package/dist/NormalModuleFactory.d.ts +23 -0
  30. package/dist/Resolver.d.ts +30 -0
  31. package/dist/ResolverFactory.d.ts +17 -0
  32. package/dist/RspackError.d.ts +12 -0
  33. package/dist/RuleSetCompiler.d.ts +9 -0
  34. package/dist/RuntimeGlobals.d.ts +328 -0
  35. package/dist/RuntimeModule.d.ts +32 -0
  36. package/dist/Stats.d.ts +17 -0
  37. package/dist/Template.d.ts +77 -0
  38. package/dist/VirtualModulesPlugin.d.ts +12 -0
  39. package/dist/Watching.d.ts +56 -0
  40. package/dist/binding.d.ts +8 -0
  41. package/dist/browser/BrowserHttpImportEsmPlugin.d.ts +48 -0
  42. package/dist/browser/BrowserRequirePlugin.d.ts +38 -0
  43. package/dist/browser/buffer.d.ts +1 -0
  44. package/dist/browser/fs.d.ts +13 -0
  45. package/dist/browser/index.d.ts +11 -0
  46. package/dist/browser/service.d.ts +25 -0
  47. package/dist/builtin-loader/index.d.ts +1 -0
  48. package/dist/builtin-loader/lightningcss/index.d.ts +117 -0
  49. package/dist/builtin-loader/swc/collectTypeScriptInfo.d.ts +21 -0
  50. package/dist/builtin-loader/swc/index.d.ts +5 -0
  51. package/dist/builtin-loader/swc/pluginImport.d.ts +33 -0
  52. package/dist/builtin-loader/swc/types.d.ts +83 -0
  53. package/dist/builtin-plugin/APIPlugin.d.ts +9 -0
  54. package/dist/builtin-plugin/ArrayPushCallbackChunkFormatPlugin.d.ts +9 -0
  55. package/dist/builtin-plugin/AssetModulesPlugin.d.ts +9 -0
  56. package/dist/builtin-plugin/AsyncWebAssemblyModulesPlugin.d.ts +9 -0
  57. package/dist/builtin-plugin/BannerPlugin.d.ts +40 -0
  58. package/dist/builtin-plugin/BundlerInfoRspackPlugin.d.ts +14 -0
  59. package/dist/builtin-plugin/ChunkPrefetchPreloadPlugin.d.ts +9 -0
  60. package/dist/builtin-plugin/CircularDependencyRspackPlugin.d.ts +59 -0
  61. package/dist/builtin-plugin/CommonJsChunkFormatPlugin.d.ts +9 -0
  62. package/dist/builtin-plugin/ContextReplacementPlugin.d.ts +9 -0
  63. package/dist/builtin-plugin/CopyRspackPlugin.d.ts +14 -0
  64. package/dist/builtin-plugin/CssChunkingPlugin.d.ts +21 -0
  65. package/dist/builtin-plugin/CssModulesPlugin.d.ts +9 -0
  66. package/dist/builtin-plugin/DataUriPlugin.d.ts +9 -0
  67. package/dist/builtin-plugin/DefinePlugin.d.ts +16 -0
  68. package/dist/builtin-plugin/DeterministicChunkIdsPlugin.d.ts +7 -0
  69. package/dist/builtin-plugin/DeterministicModuleIdsPlugin.d.ts +7 -0
  70. package/dist/builtin-plugin/DllEntryPlugin.d.ts +12 -0
  71. package/dist/builtin-plugin/DllReferenceAgencyPlugin.d.ts +11 -0
  72. package/dist/builtin-plugin/DynamicEntryPlugin.d.ts +12 -0
  73. package/dist/builtin-plugin/ElectronTargetPlugin.d.ts +9 -0
  74. package/dist/builtin-plugin/EnableChunkLoadingPlugin.d.ts +25 -0
  75. package/dist/builtin-plugin/EnableLibraryPlugin.d.ts +11 -0
  76. package/dist/builtin-plugin/EnableWasmLoadingPlugin.d.ts +9 -0
  77. package/dist/builtin-plugin/EnsureChunkConditionsPlugin.d.ts +9 -0
  78. package/dist/builtin-plugin/EntryPlugin.d.ts +32 -0
  79. package/dist/builtin-plugin/EsmLibraryPlugin.d.ts +11 -0
  80. package/dist/builtin-plugin/EvalDevToolModulePlugin.d.ts +11 -0
  81. package/dist/builtin-plugin/EvalSourceMapDevToolPlugin.d.ts +10 -0
  82. package/dist/builtin-plugin/ExternalsPlugin.d.ts +12 -0
  83. package/dist/builtin-plugin/FetchCompileAsyncWasmPlugin.d.ts +9 -0
  84. package/dist/builtin-plugin/FileUriPlugin.d.ts +9 -0
  85. package/dist/builtin-plugin/FlagAllModulesAsUsedPlugin.d.ts +9 -0
  86. package/dist/builtin-plugin/FlagDependencyExportsPlugin.d.ts +9 -0
  87. package/dist/builtin-plugin/FlagDependencyUsagePlugin.d.ts +9 -0
  88. package/dist/builtin-plugin/HotModuleReplacementPlugin.d.ts +7 -0
  89. package/dist/builtin-plugin/HttpExternalsRspackPlugin.d.ts +9 -0
  90. package/dist/builtin-plugin/HttpUriPlugin.d.ts +36 -0
  91. package/dist/builtin-plugin/IgnorePlugin.d.ts +19 -0
  92. package/dist/builtin-plugin/InferAsyncModulesPlugin.d.ts +9 -0
  93. package/dist/builtin-plugin/InlineExportsPlugin.d.ts +9 -0
  94. package/dist/builtin-plugin/JavascriptModulesPlugin.d.ts +15 -0
  95. package/dist/builtin-plugin/JsLoaderRspackPlugin.d.ts +10 -0
  96. package/dist/builtin-plugin/JsonModulesPlugin.d.ts +9 -0
  97. package/dist/builtin-plugin/LibManifestPlugin.d.ts +17 -0
  98. package/dist/builtin-plugin/LightningCssMinimizerRspackPlugin.d.ts +32 -0
  99. package/dist/builtin-plugin/LimitChunkCountPlugin.d.ts +14 -0
  100. package/dist/builtin-plugin/MangleExportsPlugin.d.ts +9 -0
  101. package/dist/builtin-plugin/MergeDuplicateChunksPlugin.d.ts +9 -0
  102. package/dist/builtin-plugin/ModuleChunkFormatPlugin.d.ts +9 -0
  103. package/dist/builtin-plugin/ModuleConcatenationPlugin.d.ts +7 -0
  104. package/dist/builtin-plugin/ModuleInfoHeaderPlugin.d.ts +9 -0
  105. package/dist/builtin-plugin/NamedChunkIdsPlugin.d.ts +9 -0
  106. package/dist/builtin-plugin/NamedModuleIdsPlugin.d.ts +9 -0
  107. package/dist/builtin-plugin/NaturalChunkIdsPlugin.d.ts +7 -0
  108. package/dist/builtin-plugin/NaturalModuleIdsPlugin.d.ts +7 -0
  109. package/dist/builtin-plugin/NoEmitOnErrorsPlugin.d.ts +9 -0
  110. package/dist/builtin-plugin/NodeTargetPlugin.d.ts +9 -0
  111. package/dist/builtin-plugin/NormalModuleReplacementPlugin.d.ts +10 -0
  112. package/dist/builtin-plugin/OccurrenceChunkIdsPlugin.d.ts +10 -0
  113. package/dist/builtin-plugin/ProgressPlugin.d.ts +11 -0
  114. package/dist/builtin-plugin/ProvidePlugin.d.ts +10 -0
  115. package/dist/builtin-plugin/RealContentHashPlugin.d.ts +9 -0
  116. package/dist/builtin-plugin/RemoveDuplicateModulesPlugin.d.ts +9 -0
  117. package/dist/builtin-plugin/RemoveEmptyChunksPlugin.d.ts +9 -0
  118. package/dist/builtin-plugin/RsdoctorPlugin.d.ts +49 -0
  119. package/dist/builtin-plugin/RslibPlugin.d.ts +11 -0
  120. package/dist/builtin-plugin/RstestPlugin.d.ts +11 -0
  121. package/dist/builtin-plugin/RuntimeChunkPlugin.d.ts +11 -0
  122. package/dist/builtin-plugin/RuntimePlugin.d.ts +28 -0
  123. package/dist/builtin-plugin/SideEffectsFlagPlugin.d.ts +9 -0
  124. package/dist/builtin-plugin/SizeLimitsPlugin.d.ts +19 -0
  125. package/dist/builtin-plugin/SourceMapDevToolPlugin.d.ts +11 -0
  126. package/dist/builtin-plugin/SplitChunksPlugin.d.ts +11 -0
  127. package/dist/builtin-plugin/SubresourceIntegrityPlugin.d.ts +39 -0
  128. package/dist/builtin-plugin/SwcJsMinimizerPlugin.d.ts +215 -0
  129. package/dist/builtin-plugin/URLPlugin.d.ts +9 -0
  130. package/dist/builtin-plugin/WarnCaseSensitiveModulesPlugin.d.ts +9 -0
  131. package/dist/builtin-plugin/WebWorkerTemplatePlugin.d.ts +7 -0
  132. package/dist/builtin-plugin/WorkerPlugin.d.ts +13 -0
  133. package/dist/builtin-plugin/base.d.ts +45 -0
  134. package/dist/builtin-plugin/css-extract/index.d.ts +24 -0
  135. package/dist/builtin-plugin/css-extract/loader.d.ts +21 -0
  136. package/dist/builtin-plugin/css-extract/utils.d.ts +6 -0
  137. package/dist/builtin-plugin/html-plugin/hooks.d.ts +32 -0
  138. package/dist/builtin-plugin/html-plugin/index.d.ts +2 -0
  139. package/dist/builtin-plugin/html-plugin/options.d.ts +82 -0
  140. package/dist/builtin-plugin/html-plugin/plugin.d.ts +24 -0
  141. package/dist/builtin-plugin/html-plugin/taps.d.ts +2 -0
  142. package/dist/builtin-plugin/index.d.ts +84 -0
  143. package/dist/builtin-plugin/lazy-compilation/lazyCompilation.d.ts +10 -0
  144. package/dist/builtin-plugin/lazy-compilation/middleware.d.ts +4 -0
  145. package/dist/config/adapter.d.ts +8 -0
  146. package/dist/config/adapterRuleUse.d.ts +391 -0
  147. package/dist/config/browserslistTargetHandler.d.ts +15 -0
  148. package/dist/config/defaults.d.ts +4 -0
  149. package/dist/config/devServer.d.ts +314 -0
  150. package/dist/config/index.d.ts +5 -0
  151. package/dist/config/normalization.d.ts +169 -0
  152. package/dist/config/target.d.ts +89 -0
  153. package/dist/config/types.d.ts +2383 -0
  154. package/dist/container/ContainerPlugin.d.ts +40 -0
  155. package/dist/container/ContainerReferencePlugin.d.ts +33 -0
  156. package/dist/container/ModuleFederationManifestPlugin.d.ts +37 -0
  157. package/dist/container/ModuleFederationPlugin.d.ts +15 -0
  158. package/dist/container/ModuleFederationPluginV1.d.ts +22 -0
  159. package/dist/container/ModuleFederationRuntimePlugin.d.ts +12 -0
  160. package/dist/container/index.d.ts +4 -0
  161. package/dist/container/options.d.ts +3 -0
  162. package/dist/error/ConcurrentCompilationError.d.ts +14 -0
  163. package/dist/exports.d.ts +166 -0
  164. package/dist/index.d.ts +10 -0
  165. package/dist/index.mjs +66931 -0
  166. package/dist/index.mjs.LICENSE.txt +19 -0
  167. package/dist/lib/AbstractMethodError.d.ts +23 -0
  168. package/dist/lib/Cache.d.ts +65 -0
  169. package/dist/lib/CacheFacade.d.ts +139 -0
  170. package/dist/lib/DllPlugin.d.ts +42 -0
  171. package/dist/lib/DllReferencePlugin.d.ts +119 -0
  172. package/dist/lib/EntryOptionPlugin.d.ts +33 -0
  173. package/dist/lib/EnvironmentPlugin.d.ts +22 -0
  174. package/dist/lib/HookWebpackError.d.ts +40 -0
  175. package/dist/lib/IgnoreWarningsPlugin.d.ts +25 -0
  176. package/dist/lib/LoaderOptionsPlugin.d.ts +28 -0
  177. package/dist/lib/LoaderTargetPlugin.d.ts +24 -0
  178. package/dist/lib/ModuleFilenameHelpers.d.ts +53 -0
  179. package/dist/lib/WebpackError.d.ts +21 -0
  180. package/dist/lib/cache/MemoryCachePlugin.d.ts +5 -0
  181. package/dist/lib/cache/getLazyHashedEtag.d.ts +35 -0
  182. package/dist/lib/cache/mergeEtags.d.ts +17 -0
  183. package/dist/loader-runner/LoaderLoadingError.d.ts +13 -0
  184. package/dist/loader-runner/ModuleError.d.ts +13 -0
  185. package/dist/loader-runner/index.d.ts +34 -0
  186. package/dist/loader-runner/loadLoader.d.ts +12 -0
  187. package/dist/loader-runner/service.d.ts +71 -0
  188. package/dist/loader-runner/utils.d.ts +7 -0
  189. package/dist/loader-runner/worker.d.ts +14 -0
  190. package/dist/logging/Logger.d.ts +61 -0
  191. package/dist/logging/createConsoleLogger.d.ts +35 -0
  192. package/dist/logging/truncateArgs.d.ts +16 -0
  193. package/dist/napi-binding.d.ts +3128 -0
  194. package/dist/node/NodeEnvironmentPlugin.d.ts +10 -0
  195. package/dist/node/NodeTemplatePlugin.d.ts +18 -0
  196. package/dist/node/NodeWatchFileSystem.d.ts +18 -0
  197. package/dist/node/nodeConsole.d.ts +15 -0
  198. package/dist/rspack.d.ts +16 -0
  199. package/dist/rspack.wasi-browser.js +125 -0
  200. package/dist/rspackOptionsApply.d.ts +4 -0
  201. package/dist/runtime/cssExtractHmr.d.ts +4 -0
  202. package/dist/runtime/moduleFederationDefaultRuntime.d.ts +2 -0
  203. package/dist/sharing/ConsumeSharedPlugin.d.ts +41 -0
  204. package/dist/sharing/ProvideSharedPlugin.d.ts +34 -0
  205. package/dist/sharing/SharePlugin.d.ts +51 -0
  206. package/dist/sharing/ShareRuntimePlugin.d.ts +9 -0
  207. package/dist/sharing/utils.d.ts +1 -0
  208. package/dist/stats/DefaultStatsFactoryPlugin.d.ts +20 -0
  209. package/dist/stats/DefaultStatsPresetPlugin.d.ts +4 -0
  210. package/dist/stats/DefaultStatsPrinterPlugin.d.ts +13 -0
  211. package/dist/stats/StatsFactory.d.ts +57 -0
  212. package/dist/stats/StatsPrinter.d.ts +57 -0
  213. package/dist/stats/statsFactoryUtils.d.ts +341 -0
  214. package/dist/swc.d.ts +7 -0
  215. package/dist/taps/compilation.d.ts +8 -0
  216. package/dist/taps/compiler.d.ts +2 -0
  217. package/dist/taps/contextModuleFactory.d.ts +2 -0
  218. package/dist/taps/index.d.ts +6 -0
  219. package/dist/taps/javascriptModules.d.ts +2 -0
  220. package/dist/taps/normalModuleFactory.d.ts +2 -0
  221. package/dist/taps/types.d.ts +11 -0
  222. package/dist/trace/index.d.ts +46 -0
  223. package/dist/trace/traceHookPlugin.d.ts +5 -0
  224. package/dist/util/ArrayQueue.d.ts +45 -0
  225. package/dist/util/AsyncTask.d.ts +7 -0
  226. package/dist/util/MergeCaller.d.ts +10 -0
  227. package/dist/util/SizeFormatHelpers.d.ts +10 -0
  228. package/dist/util/SplitChunkSize.d.ts +5 -0
  229. package/dist/util/assertNotNil.d.ts +1 -0
  230. package/dist/util/assetCondition.d.ts +2 -0
  231. package/dist/util/asyncLib.d.ts +54 -0
  232. package/dist/util/bindingVersionCheck.d.ts +5 -0
  233. package/dist/util/cleverMerge.d.ts +24 -0
  234. package/dist/util/comparators.d.ts +16 -0
  235. package/dist/util/createHash.d.ts +16 -0
  236. package/dist/util/createReadonlyMap.d.ts +1 -0
  237. package/dist/util/fake.d.ts +9 -0
  238. package/dist/util/fs.d.ts +375 -0
  239. package/dist/util/hash/index.d.ts +26 -0
  240. package/dist/util/hash/md4.d.ts +11 -0
  241. package/dist/util/hash/wasm-hash.d.ts +51 -0
  242. package/dist/util/hash/xxhash64.d.ts +11 -0
  243. package/dist/util/identifier.d.ts +31 -0
  244. package/dist/util/index.d.ts +8 -0
  245. package/dist/util/memoize.d.ts +2 -0
  246. package/dist/util/runtime.d.ts +2 -0
  247. package/dist/util/smartGrouping.d.ts +21 -0
  248. package/dist/util/source.d.ts +6 -0
  249. package/dist/util/validateConfig.d.ts +5 -0
  250. package/dist/wasi-worker-browser.mjs +23591 -0
  251. package/dist/wasi-worker-browser.mjs.LICENSE.txt +12 -0
  252. package/package.json +48 -9
@@ -0,0 +1,375 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/util/fs.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 { Abortable } from "node:events";
11
+ import type { WatchOptions } from "../config";
12
+ export interface Watcher {
13
+ close(): void;
14
+ pause(): void;
15
+ getAggregatedChanges?(): Set<string>;
16
+ getAggregatedRemovals?(): Set<string>;
17
+ getFileTimeInfoEntries?(): Map<string, FileSystemInfoEntry | "ignore">;
18
+ getContextTimeInfoEntries?(): Map<string, FileSystemInfoEntry | "ignore">;
19
+ getInfo(): WatcherInfo;
20
+ }
21
+ export interface WatcherInfo {
22
+ changes: Set<string>;
23
+ removals: Set<string>;
24
+ fileTimeInfoEntries: Map<string, FileSystemInfoEntry | "ignore">;
25
+ contextTimeInfoEntries: Map<string, FileSystemInfoEntry | "ignore">;
26
+ }
27
+ export type IStatsBase<T> = {
28
+ isFile: () => boolean;
29
+ isDirectory: () => boolean;
30
+ isBlockDevice: () => boolean;
31
+ isCharacterDevice: () => boolean;
32
+ isSymbolicLink: () => boolean;
33
+ isFIFO: () => boolean;
34
+ isSocket: () => boolean;
35
+ dev: T;
36
+ ino: T;
37
+ mode: T;
38
+ nlink: T;
39
+ uid: T;
40
+ gid: T;
41
+ rdev: T;
42
+ size: T;
43
+ blksize: T;
44
+ blocks: T;
45
+ atimeMs: T;
46
+ mtimeMs: T;
47
+ ctimeMs: T;
48
+ birthtimeMs: T;
49
+ atime: Date;
50
+ mtime: Date;
51
+ ctime: Date;
52
+ birthtime: Date;
53
+ };
54
+ export type IStats = IStatsBase<number>;
55
+ export type IBigIntStats = IStatsBase<bigint> & {
56
+ atimeNs: bigint;
57
+ mtimeNs: bigint;
58
+ ctimeNs: bigint;
59
+ birthtimeNs: bigint;
60
+ };
61
+ interface IDirent {
62
+ isFile: () => boolean;
63
+ isDirectory: () => boolean;
64
+ isBlockDevice: () => boolean;
65
+ isCharacterDevice: () => boolean;
66
+ isSymbolicLink: () => boolean;
67
+ isFIFO: () => boolean;
68
+ isSocket: () => boolean;
69
+ name: string | Buffer;
70
+ }
71
+ export interface StreamOptions {
72
+ flags?: string;
73
+ encoding?: NodeJS.BufferEncoding;
74
+ fd?: any;
75
+ mode?: number;
76
+ autoClose?: boolean;
77
+ emitClose?: boolean;
78
+ start?: number;
79
+ signal?: null | AbortSignal;
80
+ }
81
+ export interface FSImplementation {
82
+ open?: (...args: any[]) => any;
83
+ close?: (...args: any[]) => any;
84
+ }
85
+ export type CreateReadStreamFSImplementation = FSImplementation & {
86
+ read: (...args: any[]) => any;
87
+ };
88
+ export type ReadStreamOptions = StreamOptions & {
89
+ fs?: null | CreateReadStreamFSImplementation;
90
+ end?: number;
91
+ };
92
+ export type CreateReadStream = (path: PathLike, options?: NodeJS.BufferEncoding | ReadStreamOptions) => NodeJS.ReadableStream;
93
+ export interface OutputFileSystem {
94
+ writeFile: (arg0: string | number, arg1: string | Buffer, arg2: (arg0?: null | NodeJS.ErrnoException) => void) => void;
95
+ mkdir: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException) => void) => void;
96
+ readdir: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException, arg1?: (string | Buffer)[] | IDirent[]) => void) => void;
97
+ rmdir: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException) => void) => void;
98
+ unlink: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException) => void) => void;
99
+ stat: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException, arg1?: IStats) => void) => void;
100
+ lstat?: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException, arg1?: IStats) => void) => void;
101
+ readFile: (arg0: string, arg1: (arg0?: null | NodeJS.ErrnoException, arg1?: string | Buffer) => void) => void;
102
+ chmod: (arg0: string, arg1: number, arg2: (arg0?: NodeJS.ErrnoException | null) => void) => void;
103
+ join?: (arg0: string, arg1: string) => string;
104
+ relative?: (arg0: string, arg1: string) => string;
105
+ dirname?: (arg0: string) => string;
106
+ createReadStream?: CreateReadStream;
107
+ }
108
+ export type JsonPrimitive = string | number | boolean | null;
109
+ export type JsonArray = JsonValue[];
110
+ export type JsonValue = JsonPrimitive | JsonObject | JsonArray;
111
+ export type JsonObject = {
112
+ [Key in string]: JsonValue;
113
+ } & {
114
+ [Key in string]?: JsonValue | undefined;
115
+ };
116
+ export type NoParamCallback = (err: NodeJS.ErrnoException | null) => void;
117
+ export type StringCallback = (err: NodeJS.ErrnoException | null, data?: string) => void;
118
+ export type BufferCallback = (err: NodeJS.ErrnoException | null, data?: Buffer) => void;
119
+ export type StringOrBufferCallback = (err: NodeJS.ErrnoException | null, data?: string | Buffer) => void;
120
+ export type ReaddirStringCallback = (err: NodeJS.ErrnoException | null, files?: string[]) => void;
121
+ export type ReaddirBufferCallback = (err: NodeJS.ErrnoException | null, files?: Buffer[]) => void;
122
+ export type ReaddirStringOrBufferCallback = (err: NodeJS.ErrnoException | null, files?: string[] | Buffer[]) => void;
123
+ export type ReaddirDirentCallback = (err: NodeJS.ErrnoException | null, files?: IDirent[]) => void;
124
+ export type StatsCallback = (err: NodeJS.ErrnoException | null, stats?: IStats) => void;
125
+ export type BigIntStatsCallback = (err: NodeJS.ErrnoException | null, stats?: IBigIntStats) => void;
126
+ export type StatsOrBigIntStatsCallback = (err: NodeJS.ErrnoException | null, stats?: IStats | IBigIntStats) => void;
127
+ export type NumberCallback = (err: NodeJS.ErrnoException | null, data?: number) => void;
128
+ export type ReadJsonCallback = (err: NodeJS.ErrnoException | Error | null, data?: JsonObject) => void;
129
+ export type PathLike = string | Buffer | URL;
130
+ export type PathOrFileDescriptor = PathLike | number;
131
+ export type ObjectEncodingOptions = {
132
+ encoding?: BufferEncoding | null;
133
+ };
134
+ export type ReadFile = {
135
+ (path: PathOrFileDescriptor, options: ({
136
+ encoding: null | undefined;
137
+ flag?: string;
138
+ } & Abortable) | null | undefined, callback: BufferCallback): void;
139
+ (path: PathOrFileDescriptor, options: ({
140
+ encoding: BufferEncoding;
141
+ flag?: string;
142
+ } & Abortable) | BufferEncoding, callback: StringCallback): void;
143
+ (path: PathOrFileDescriptor, options: (ObjectEncodingOptions & {
144
+ flag?: string;
145
+ } & Abortable) | BufferEncoding | null | undefined, callback: StringOrBufferCallback): void;
146
+ (path: PathOrFileDescriptor, callback: BufferCallback): void;
147
+ };
148
+ export type ReadFileSync = {
149
+ (path: PathOrFileDescriptor, options: {
150
+ encoding: null | undefined;
151
+ flag?: string;
152
+ } | null): Buffer;
153
+ (path: PathOrFileDescriptor, options: {
154
+ encoding: BufferEncoding;
155
+ flag?: string;
156
+ } | BufferEncoding): string;
157
+ (path: PathOrFileDescriptor, options: (ObjectEncodingOptions & {
158
+ flag?: string;
159
+ }) | BufferEncoding | null): string | Buffer;
160
+ };
161
+ export type EncodingOption = ObjectEncodingOptions | BufferEncoding | undefined | null;
162
+ export type BufferEncodingOption = "buffer" | {
163
+ encoding: "buffer";
164
+ };
165
+ export type StatOptions = {
166
+ bigint?: boolean;
167
+ };
168
+ export type StatSyncOptions = {
169
+ bigint?: boolean;
170
+ throwIfNoEntry?: boolean;
171
+ };
172
+ export type Readlink = {
173
+ (path: PathLike, options: EncodingOption, callback: StringCallback): void;
174
+ (path: PathLike, options: BufferEncodingOption, callback: BufferCallback): void;
175
+ (path: PathLike, options: EncodingOption, callback: StringOrBufferCallback): void;
176
+ (path: PathLike, callback: StringCallback): void;
177
+ };
178
+ export type ReadlinkSync = {
179
+ (path: PathLike, options: EncodingOption): string;
180
+ (path: PathLike, options: BufferEncodingOption): Buffer;
181
+ (path: PathLike, options: EncodingOption): string | Buffer;
182
+ };
183
+ export type Readdir = {
184
+ (path: PathLike, options: {
185
+ encoding: BufferEncoding | null;
186
+ withFileTypes?: false;
187
+ recursive?: boolean;
188
+ } | BufferEncoding | null | undefined, callback: ReaddirStringCallback): void;
189
+ (path: PathLike, options: {
190
+ encoding: "buffer";
191
+ withFileTypes?: false;
192
+ recursive?: boolean;
193
+ } | "buffer", callback: ReaddirBufferCallback): void;
194
+ (path: PathLike, callback: ReaddirStringCallback): void;
195
+ (path: PathLike, options: (ObjectEncodingOptions & {
196
+ withFileTypes: true;
197
+ recursive?: boolean;
198
+ }) | BufferEncoding | null | undefined, callback: ReaddirStringOrBufferCallback): void;
199
+ (path: PathLike, options: ObjectEncodingOptions & {
200
+ withFileTypes: true;
201
+ recursive?: boolean;
202
+ }, callback: ReaddirDirentCallback): void;
203
+ };
204
+ export type ReaddirSync = {
205
+ (path: PathLike, options: {
206
+ encoding: BufferEncoding | null;
207
+ withFileTypes?: false;
208
+ recursive?: boolean;
209
+ } | BufferEncoding | null): string[];
210
+ (path: PathLike, options: {
211
+ encoding: "buffer";
212
+ withFileTypes?: false;
213
+ recursive?: boolean;
214
+ } | "buffer"): Buffer[];
215
+ (path: PathLike, options: (ObjectEncodingOptions & {
216
+ withFileTypes?: false;
217
+ recursive?: boolean;
218
+ }) | BufferEncoding | null): string[] | Buffer[];
219
+ (path: PathLike, options: ObjectEncodingOptions & {
220
+ withFileTypes: true;
221
+ recursive?: boolean;
222
+ }): IDirent[];
223
+ };
224
+ export type Stat = {
225
+ (path: PathLike, callback: StatsCallback): void;
226
+ (path: PathLike, options: (StatOptions & {
227
+ bigint?: false;
228
+ }) | undefined, callback: StatsCallback): void;
229
+ (path: PathLike, options: StatOptions & {
230
+ bigint: true;
231
+ }, callback: BigIntStatsCallback): void;
232
+ (path: PathLike, options: StatOptions | undefined, callback: StatsOrBigIntStatsCallback): void;
233
+ };
234
+ export type StatSync = {
235
+ (path: PathLike, options?: undefined): IStats;
236
+ (path: PathLike, options?: StatSyncOptions & {
237
+ bigint?: false;
238
+ throwIfNoEntry: false;
239
+ }): IStats | undefined;
240
+ (path: PathLike, options: StatSyncOptions & {
241
+ bigint: true;
242
+ throwIfNoEntry: false;
243
+ }): IBigIntStats | undefined;
244
+ (path: PathLike, options?: StatSyncOptions & {
245
+ bigint?: false;
246
+ }): IStats;
247
+ (path: PathLike, options: StatSyncOptions & {
248
+ bigint: true;
249
+ }): IBigIntStats;
250
+ (path: PathLike, options: StatSyncOptions & {
251
+ bigint: boolean;
252
+ throwIfNoEntry?: false;
253
+ }): IStats | IBigIntStats;
254
+ (path: PathLike, options?: StatSyncOptions): IStats | IBigIntStats | undefined;
255
+ };
256
+ export type LStat = {
257
+ (path: PathLike, callback: StatsCallback): void;
258
+ (path: PathLike, options: (StatOptions & {
259
+ bigint?: false;
260
+ }) | undefined, callback: StatsCallback): void;
261
+ (path: PathLike, options: StatOptions & {
262
+ bigint: true;
263
+ }, callback: BigIntStatsCallback): void;
264
+ (path: PathLike, options: StatOptions | undefined, callback: StatsOrBigIntStatsCallback): void;
265
+ };
266
+ export type LStatSync = {
267
+ (path: PathLike, options?: undefined): IStats;
268
+ (path: PathLike, options?: StatSyncOptions & {
269
+ bigint?: false;
270
+ throwIfNoEntry: false;
271
+ }): IStats | undefined;
272
+ (path: PathLike, options: StatSyncOptions & {
273
+ bigint: true;
274
+ throwIfNoEntry: false;
275
+ }): IBigIntStats | undefined;
276
+ (path: PathLike, options?: StatSyncOptions & {
277
+ bigint?: false;
278
+ }): IStats;
279
+ (path: PathLike, options: StatSyncOptions & {
280
+ bigint: true;
281
+ }): IBigIntStats;
282
+ (path: PathLike, options: StatSyncOptions & {
283
+ bigint: boolean;
284
+ throwIfNoEntry?: false;
285
+ }): IStats | IBigIntStats;
286
+ (path: PathLike, options?: StatSyncOptions): IStats | IBigIntStats | undefined;
287
+ };
288
+ export type RealPath = {
289
+ (path: PathLike, options: EncodingOption, callback: StringCallback): void;
290
+ (path: PathLike, options: BufferEncodingOption, callback: BufferCallback): void;
291
+ (path: PathLike, options: EncodingOption, callback: StringOrBufferCallback): void;
292
+ (path: PathLike, callback: StringCallback): void;
293
+ };
294
+ export type RealPathSync = {
295
+ (path: PathLike, options?: EncodingOption): string;
296
+ (path: PathLike, options: BufferEncodingOption): Buffer;
297
+ (path: PathLike, options?: EncodingOption): string | Buffer;
298
+ };
299
+ export type ReadJson = (path: PathOrFileDescriptor, callback: ReadJsonCallback) => void;
300
+ export type ReadJsonSync = (path: PathOrFileDescriptor) => JsonObject;
301
+ export type Purge = (files?: string | string[] | Set<string>) => void;
302
+ export type InputFileSystem = {
303
+ readFile: ReadFile;
304
+ readFileSync?: ReadFileSync;
305
+ readlink: Readlink;
306
+ readlinkSync?: ReadlinkSync;
307
+ readdir: Readdir;
308
+ readdirSync?: ReaddirSync;
309
+ stat: Stat;
310
+ statSync?: StatSync;
311
+ lstat?: LStat;
312
+ lstatSync?: LStatSync;
313
+ realpath?: RealPath;
314
+ realpathSync?: RealPathSync;
315
+ readJson?: ReadJson;
316
+ readJsonSync?: ReadJsonSync;
317
+ purge?: Purge;
318
+ join?: (path1: string, path2: string) => string;
319
+ relative?: (from: string, to: string) => string;
320
+ dirname?: (path: string) => string;
321
+ };
322
+ export type IntermediateFileSystem = InputFileSystem & OutputFileSystem & IntermediateFileSystemExtras;
323
+ export type WriteStreamOptions = {
324
+ flags?: string;
325
+ encoding?: "ascii" | "utf8" | "utf-8" | "utf16le" | "utf-16le" | "ucs2" | "ucs-2" | "latin1" | "binary" | "base64" | "base64url" | "hex";
326
+ fd?: any;
327
+ mode?: number;
328
+ };
329
+ export type MakeDirectoryOptions = {
330
+ recursive?: boolean;
331
+ mode?: string | number;
332
+ };
333
+ export type MkdirSync = (path: PathLike, options: MakeDirectoryOptions) => undefined | string;
334
+ export type ReadAsyncOptions<TBuffer extends ArrayBufferView = Buffer> = {
335
+ offset?: number;
336
+ length?: number;
337
+ position?: null | number | bigint;
338
+ buffer?: TBuffer;
339
+ };
340
+ export type Read<TBuffer extends ArrayBufferView = Buffer> = (fd: number, options: ReadAsyncOptions<TBuffer>, callback: (err: null | NodeJS.ErrnoException, bytesRead: number, buffer: TBuffer) => void) => void;
341
+ export type WriteAsyncOptions<TBuffer extends ArrayBufferView = Buffer> = {
342
+ offset?: number;
343
+ length?: number;
344
+ position?: null | number | bigint;
345
+ buffer?: TBuffer;
346
+ };
347
+ export type Write<TBuffer extends ArrayBufferView = Buffer> = (fd: number, content: Buffer, options: WriteAsyncOptions<TBuffer>, callback: (err: null | NodeJS.ErrnoException, bytesWrite: number, buffer: TBuffer) => void) => void;
348
+ export type Open = (file: PathLike, flags: undefined | string | number, callback: (arg0: null | NodeJS.ErrnoException, arg1?: number) => void) => void;
349
+ export type IntermediateFileSystemExtras = {
350
+ rename: (arg0: PathLike, arg1: PathLike, arg2: (arg0: null | NodeJS.ErrnoException) => void) => void;
351
+ mkdirSync: MkdirSync;
352
+ write: Write;
353
+ open: Open;
354
+ read: Read;
355
+ close: (arg0: number, arg1: (arg0: null | NodeJS.ErrnoException) => void) => void;
356
+ };
357
+ export declare function rmrf(fs: OutputFileSystem, p: string, callback: (err?: Error | null) => void): void;
358
+ export declare const mkdirp: (fs: OutputFileSystem, p: string, callback: (error?: Error) => void) => void;
359
+ export interface FileSystemInfoEntry {
360
+ safeTime: number;
361
+ timestamp?: number;
362
+ }
363
+ export interface WatchFileSystem {
364
+ watch(files: Iterable<string> & {
365
+ added?: Iterable<String>;
366
+ removed?: Iterable<String>;
367
+ }, directories: Iterable<string> & {
368
+ added?: Iterable<String>;
369
+ removed?: Iterable<String>;
370
+ }, missing: Iterable<string> & {
371
+ added?: Iterable<String>;
372
+ removed?: Iterable<String>;
373
+ }, startTime: number, options: 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;
374
+ }
375
+ export {};
@@ -0,0 +1,26 @@
1
+ export default class Hash {
2
+ /**
3
+ * @param data data
4
+ * @param inputEncoding data encoding
5
+ * @returns updated hash
6
+ */
7
+ update(data: string, inputEncoding: string): this;
8
+ /**
9
+ * @param data data
10
+ * @returns updated hash
11
+ */
12
+ update(data: Buffer): this;
13
+ /**
14
+ * Calculates the digest without encoding
15
+ * @abstract
16
+ * @returns {Buffer} digest
17
+ */
18
+ digest(): Buffer;
19
+ /**
20
+ * Calculates the digest with encoding
21
+ * @abstract
22
+ * @param encoding encoding of the return value
23
+ * @returns {string} digest
24
+ */
25
+ digest(encoding: string): string;
26
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/util/hash/md4.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
+ declare const _default: () => import("./wasm-hash").WasmHash;
11
+ export default _default;
@@ -0,0 +1,51 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/util/hash/wasm-hash.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 Exports = WebAssembly.Instance["exports"] & {
11
+ init: () => void;
12
+ update: (b: number) => void;
13
+ memory: WebAssembly.Memory;
14
+ final: (b: number) => void;
15
+ };
16
+ export declare class WasmHash {
17
+ exports: Exports;
18
+ instancesPool: WebAssembly.Instance[];
19
+ buffered: number;
20
+ mem: Buffer;
21
+ chunkSize: number;
22
+ digestSize: number;
23
+ /**
24
+ * @param instance wasm instance
25
+ * @param instancesPool pool of instances
26
+ * @param chunkSize size of data chunks passed to wasm
27
+ * @param digestSize size of digest returned by wasm
28
+ */
29
+ constructor(instance: WebAssembly.Instance, instancesPool: WebAssembly.Instance[], chunkSize: number, digestSize: number);
30
+ reset(): void;
31
+ /**
32
+ * @param data data
33
+ * @param encoding encoding
34
+ * @returns itself
35
+ */
36
+ update(data: Buffer | string, encoding?: BufferEncoding): this;
37
+ /**
38
+ * @param {string} data data
39
+ * @param {BufferEncoding=} encoding encoding
40
+ * @returns {void}
41
+ */
42
+ _updateWithShortString(data: string, encoding?: BufferEncoding): void;
43
+ /**
44
+ * @param data data
45
+ * @returns
46
+ */
47
+ _updateWithBuffer(data: Buffer): void;
48
+ digest(type: BufferEncoding): string | Buffer<ArrayBuffer>;
49
+ }
50
+ declare const create: (wasmModule: WebAssembly.Module, instancesPool: WasmHash[], chunkSize: number, digestSize: number) => WasmHash;
51
+ export default create;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/util/hash/xxhash64.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
+ declare const _default: () => import("./wasm-hash").WasmHash;
11
+ export default _default;
@@ -0,0 +1,31 @@
1
+ interface ParsedResource {
2
+ resource: string;
3
+ path: string;
4
+ query: string;
5
+ fragment: string;
6
+ }
7
+ type ParsedResourceWithoutFragment = Omit<ParsedResource, "fragment">;
8
+ export declare const makePathsRelative: {
9
+ (context: string, identifier: string, associatedObjectForCache: object | undefined): string;
10
+ bindCache(associatedObjectForCache: object | undefined): ((arg0: string, arg1: string) => string);
11
+ bindContextCache(context: string, associatedObjectForCache: object | undefined): ((arg0: string) => string);
12
+ };
13
+ export declare const contextify: {
14
+ (context: string, identifier: string, associatedObjectForCache: object | undefined): string;
15
+ bindCache(associatedObjectForCache: object | undefined): ((arg0: string, arg1: string) => string);
16
+ bindContextCache(context: string, associatedObjectForCache: object | undefined): ((arg0: string) => string);
17
+ };
18
+ export declare const absolutify: {
19
+ (context: string, identifier: string, associatedObjectForCache: object | undefined): string;
20
+ bindCache(associatedObjectForCache: object | undefined): ((arg0: string, arg1: string) => string);
21
+ bindContextCache(context: string, associatedObjectForCache: object | undefined): ((arg0: string) => string);
22
+ };
23
+ export declare const parseResource: {
24
+ (str: string, associatedObjectForCache?: object): ParsedResource;
25
+ bindCache(associatedObjectForCache: object): (str: string) => ParsedResource;
26
+ };
27
+ export declare const parseResourceWithoutFragment: {
28
+ (str: string, associatedObjectForCache?: object): ParsedResourceWithoutFragment;
29
+ bindCache(associatedObjectForCache: object): (str: string) => ParsedResourceWithoutFragment;
30
+ };
31
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { LoaderObject } from "../loader-runner";
2
+ export declare function isNil(value: unknown): value is null | undefined;
3
+ export declare const toBuffer: (bufLike: string | Buffer | Uint8Array) => Buffer;
4
+ export declare const toObject: (input: string | Buffer | object) => object;
5
+ export declare function serializeObject(map: string | object | undefined | null): Buffer | undefined;
6
+ export declare function indent(str: string, prefix: string): string;
7
+ export declare function stringifyLoaderObject(o: LoaderObject): string;
8
+ export declare const unsupported: (name: string, issue?: string) => never;
@@ -0,0 +1,2 @@
1
+ export declare const memoize: <T>(fn: () => T) => (() => T);
2
+ export declare const memoizeFn: <const T extends readonly unknown[], const P>(fn: () => (...args: T) => P) => (...args: T) => P;
@@ -0,0 +1,2 @@
1
+ export type RuntimeSpec = string | Set<string> | undefined;
2
+ export declare function toJsRuntimeSpec(runtime: RuntimeSpec): string | string[] | undefined;
@@ -0,0 +1,21 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/tree/4b4ca3bb53f36a5b8fc6bc1bd976ed7af161bd80/lib/util
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 GroupOptions = {
11
+ groupChildren?: boolean | undefined;
12
+ force?: boolean | undefined;
13
+ targetGroupCount?: number | undefined;
14
+ };
15
+ export type GroupConfig<T, R = T> = {
16
+ getKeys: (arg0: any) => string[] | undefined;
17
+ createGroup: (key: string, arg1: (T | R)[], arg2: T[]) => R;
18
+ getOptions?: ((key: string, arg1: T[]) => GroupOptions) | undefined;
19
+ };
20
+ export declare const smartGrouping: <T, R>(items: T[], groupConfigs: GroupConfig<T, R>[]) => (T | R)[];
21
+ export {};
@@ -0,0 +1,6 @@
1
+ import type { JsSource } from "../binding";
2
+ import { type Source } from "webpack-sources";
3
+ export declare class SourceAdapter {
4
+ static fromBinding(source: JsSource): Source;
5
+ static toBinding(source: Source): JsSource;
6
+ }
@@ -0,0 +1,5 @@
1
+ import type { Configuration } from "../config";
2
+ /**
3
+ * Performs configuration validation that cannot be covered by TypeScript types.
4
+ */
5
+ export declare function validateRspackConfig(config: Configuration): void;