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

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 +206 -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,341 @@
1
+ import type binding from "../binding";
2
+ import type { JsOriginRecord } from "../binding";
3
+ import type { Compilation } from "../Compilation";
4
+ import type { StatsOptions } from "../config";
5
+ import type { StatsFactory, StatsFactoryContext } from "./StatsFactory";
6
+ export type KnownStatsChunkGroup = {
7
+ name?: string;
8
+ chunks?: (string | number)[];
9
+ assets?: {
10
+ name: string;
11
+ size?: number;
12
+ }[];
13
+ filteredAssets?: number;
14
+ assetsSize?: number;
15
+ auxiliaryAssets?: {
16
+ name: string;
17
+ size?: number;
18
+ }[];
19
+ filteredAuxiliaryAssets?: number;
20
+ auxiliaryAssetsSize?: number;
21
+ children?: {
22
+ preload?: StatsChunkGroup[];
23
+ prefetch?: StatsChunkGroup[];
24
+ };
25
+ childAssets?: {
26
+ preload?: string[];
27
+ prefetch?: string[];
28
+ };
29
+ isOverSizeLimit?: boolean;
30
+ };
31
+ export type KnownStatsChunk = {
32
+ type: string;
33
+ rendered: boolean;
34
+ initial: boolean;
35
+ entry: boolean;
36
+ reason?: string;
37
+ size: number;
38
+ sizes?: Record<string, number>;
39
+ names?: string[];
40
+ idHints?: string[];
41
+ runtime?: string[];
42
+ files?: string[];
43
+ auxiliaryFiles?: string[];
44
+ hash?: string;
45
+ childrenByOrder?: Record<string, (string | number)[]>;
46
+ id?: string | number;
47
+ siblings?: (string | number)[];
48
+ parents?: (string | number)[];
49
+ children?: (string | number)[];
50
+ modules?: StatsModule[];
51
+ filteredModules?: number;
52
+ origins?: StatsChunkOrigin[];
53
+ };
54
+ export type KnownAssetInfo = {
55
+ immutable?: boolean;
56
+ minimized?: boolean;
57
+ fullhash?: string | string[];
58
+ chunkhash?: string | string[];
59
+ contenthash?: string | string[];
60
+ sourceFilename?: string;
61
+ copied?: boolean;
62
+ size?: number;
63
+ development?: boolean;
64
+ hotModuleReplacement?: boolean;
65
+ javascriptModule?: boolean;
66
+ related?: Record<string, string | string[]>;
67
+ };
68
+ export type AssetInfo = KnownAssetInfo & Record<string, any>;
69
+ export type StatsChunkGroup = KnownStatsChunkGroup & Record<string, any>;
70
+ export type KnownStatsAsset = {
71
+ type: string;
72
+ name: string;
73
+ info: AssetInfo;
74
+ size: number;
75
+ emitted: boolean;
76
+ cached: boolean;
77
+ related?: StatsAsset[];
78
+ chunkNames?: (string | number)[];
79
+ chunkIdHints?: (string | number)[];
80
+ chunks?: (string | null | undefined)[];
81
+ auxiliaryChunkNames?: (string | number)[];
82
+ auxiliaryChunks?: (string | null | undefined)[];
83
+ auxiliaryChunkIdHints?: (string | number)[];
84
+ filteredRelated?: number;
85
+ isOverSizeLimit?: boolean;
86
+ };
87
+ export type StatsAsset = KnownStatsAsset & Record<string, any>;
88
+ export type StatsChunk = KnownStatsChunk & Record<string, any>;
89
+ export type KnownStatsModule = {
90
+ type: string;
91
+ moduleType: string;
92
+ layer?: string;
93
+ identifier?: string;
94
+ name?: string;
95
+ nameForCondition?: string;
96
+ index?: number;
97
+ index2?: number;
98
+ preOrderIndex?: number;
99
+ postOrderIndex?: number;
100
+ size: number;
101
+ sizes: Record<string, number>;
102
+ cacheable?: boolean;
103
+ built: boolean;
104
+ codeGenerated: boolean;
105
+ buildTimeExecuted: boolean;
106
+ cached: boolean;
107
+ optional?: boolean;
108
+ orphan?: boolean;
109
+ id?: string | number | null;
110
+ issuerId?: string | number | null;
111
+ chunks?: string[];
112
+ assets?: string[];
113
+ dependent?: boolean;
114
+ issuer?: string;
115
+ issuerName?: string;
116
+ issuerPath?: StatsModuleIssuer[];
117
+ failed?: boolean;
118
+ errors?: number;
119
+ warnings?: number;
120
+ profile?: StatsProfile;
121
+ reasons?: StatsModuleReason[];
122
+ usedExports?: boolean | string[] | null;
123
+ providedExports?: string[] | null;
124
+ optimizationBailout?: string[] | null;
125
+ depth?: number;
126
+ modules?: StatsModule[];
127
+ filteredModules?: number;
128
+ source?: string | Buffer;
129
+ };
130
+ export type StatsProfile = KnownStatsProfile & Record<string, any>;
131
+ export type KnownStatsProfile = {
132
+ total: number;
133
+ resolving: number;
134
+ building: number;
135
+ };
136
+ export type StatsModule = KnownStatsModule & Record<string, any>;
137
+ export type KnownStatsModuleIssuer = {
138
+ identifier?: string;
139
+ name?: string;
140
+ id?: string | number | null;
141
+ };
142
+ export type StatsModuleIssuer = KnownStatsModuleIssuer & Record<string, any>;
143
+ export declare enum StatsErrorCode {
144
+ /**
145
+ * Warning generated when either builtin `SwcJsMinimizer` or `LightningcssMinimizer` fails to minify the code.
146
+ */
147
+ ChunkMinificationError = "ChunkMinificationError",
148
+ /**
149
+ * Warning generated when either builtin `SwcJsMinimizer` or `LightningcssMinimizer` fails to minify the code.
150
+ */
151
+ ChunkMinificationWarning = "ChunkMinificationWarning",
152
+ /**
153
+ * Error generated when a module is failed to be parsed
154
+ */
155
+ ModuleParseError = "ModuleParseError",
156
+ /**
157
+ * Warning generated when a module is failed to be parsed
158
+ */
159
+ ModuleParseWarning = "ModuleParseWarning",
160
+ /**
161
+ * Error generated when a module is failed to be built (i.e being built by a
162
+ * loader)
163
+ */
164
+ ModuleBuildError = "ModuleBuildError"
165
+ }
166
+ export type KnownStatsError = {
167
+ message: string;
168
+ code?: StatsErrorCode | string;
169
+ chunkName?: string;
170
+ chunkEntry?: boolean;
171
+ chunkInitial?: boolean;
172
+ /**
173
+ * A custom filename associated with this error/warning.
174
+ */
175
+ file?: string;
176
+ /**
177
+ * The identifier of the module related to this error/warning.
178
+ * Usually an absolute path, may include inline loader requests.
179
+ * @example
180
+ * - `/path/to/project/src/index.js`
181
+ * - `!builtin:react-refresh-loader!/path/to/project/src/index.css`
182
+ */
183
+ moduleIdentifier?: string;
184
+ /**
185
+ * The readable name of the module related to this error/warning.
186
+ * Usually a relative path, no inline loader requests.
187
+ * @example
188
+ * - `"./src/index.js"`
189
+ * - `"./src/index.css"`
190
+ */
191
+ moduleName?: string;
192
+ loc?: string;
193
+ chunkId?: string | number;
194
+ moduleId?: string | number | null;
195
+ moduleTrace?: StatsModuleTraceItem[];
196
+ details?: any;
197
+ stack?: string;
198
+ };
199
+ export type StatsError = KnownStatsError & Record<string, any>;
200
+ export type StatsModuleTraceItem = {
201
+ originIdentifier?: string;
202
+ originName?: string;
203
+ moduleIdentifier?: string;
204
+ moduleName?: string;
205
+ originId?: string | number | null;
206
+ moduleId?: string | number | null;
207
+ dependencies?: StatsModuleTraceDependency[];
208
+ };
209
+ export type StatsModuleTraceDependency = KnownStatsModuleTraceDependency & Record<string, any>;
210
+ export type KnownStatsModuleTraceDependency = {
211
+ loc: string;
212
+ };
213
+ export type KnownStatsModuleReason = {
214
+ moduleIdentifier?: string;
215
+ module?: string;
216
+ moduleName?: string;
217
+ resolvedModuleIdentifier?: string;
218
+ resolvedModule?: string;
219
+ type?: string;
220
+ active: boolean;
221
+ explanation?: string;
222
+ userRequest?: string;
223
+ loc?: string;
224
+ moduleId?: string | number | null;
225
+ resolvedModuleId?: string | number | null;
226
+ };
227
+ export type StatsModuleReason = KnownStatsModuleReason & Record<string, any>;
228
+ export type KnownStatsChunkOrigin = {
229
+ module: string;
230
+ moduleIdentifier: string;
231
+ moduleName: string;
232
+ loc: string;
233
+ request: string;
234
+ moduleId?: string | number | null;
235
+ };
236
+ export type StatsChunkOrigin = KnownStatsChunkOrigin & Record<string, any>;
237
+ export type KnownStatsCompilation = {
238
+ /**
239
+ * webpack version.
240
+ * this is a hack to be compatible with plugin which detect webpack's version
241
+ */
242
+ version?: string;
243
+ /** rspack version */
244
+ rspackVersion?: string;
245
+ name?: string;
246
+ hash?: string;
247
+ time?: number;
248
+ builtAt?: number;
249
+ publicPath?: string;
250
+ outputPath?: string;
251
+ assets?: StatsAsset[];
252
+ assetsByChunkName?: Record<string, string[]>;
253
+ chunks?: StatsChunk[];
254
+ modules?: StatsModule[];
255
+ entrypoints?: Record<string, StatsChunkGroup>;
256
+ namedChunkGroups?: Record<string, StatsChunkGroup>;
257
+ errors?: StatsError[];
258
+ errorsCount?: number;
259
+ warnings?: StatsError[];
260
+ warningsCount?: number;
261
+ filteredModules?: number;
262
+ children?: StatsCompilation[];
263
+ logging?: Record<string, StatsLogging>;
264
+ };
265
+ export type StatsCompilation = KnownStatsCompilation & Record<string, any>;
266
+ export type StatsLogging = KnownStatsLogging & Record<string, any>;
267
+ export type KnownStatsLogging = {
268
+ entries: StatsLoggingEntry[];
269
+ filteredEntries: number;
270
+ debug: boolean;
271
+ };
272
+ export type StatsLoggingEntry = KnownStatsLoggingEntry & Record<string, any>;
273
+ export type KnownStatsLoggingEntry = {
274
+ type: string;
275
+ message: string;
276
+ trace?: string[] | undefined;
277
+ children?: StatsLoggingEntry[] | undefined;
278
+ args?: any[] | undefined;
279
+ time?: number | undefined;
280
+ };
281
+ type ExtractorsByOption<T, O> = {
282
+ [x: string]: (object: O, data: T, context: StatsFactoryContext, options: any, factory: StatsFactory) => void;
283
+ };
284
+ export type PreprocessedAsset = binding.JsStatsAsset & {
285
+ type: string;
286
+ related: PreprocessedAsset[];
287
+ info: binding.JsStatsAssetInfo;
288
+ };
289
+ export type SimpleExtractors = {
290
+ compilation: ExtractorsByOption<Compilation, StatsCompilation>;
291
+ asset$visible: ExtractorsByOption<PreprocessedAsset, StatsAsset>;
292
+ asset: ExtractorsByOption<PreprocessedAsset, StatsAsset>;
293
+ chunkGroup: ExtractorsByOption<{
294
+ name: string;
295
+ chunkGroup: binding.JsStatsChunkGroup;
296
+ }, StatsChunkGroup>;
297
+ module: ExtractorsByOption<binding.JsStatsModule, StatsModule>;
298
+ module$visible: ExtractorsByOption<binding.JsStatsModule, StatsModule>;
299
+ moduleIssuer: ExtractorsByOption<binding.JsStatsModuleIssuer, StatsModuleIssuer>;
300
+ profile: ExtractorsByOption<binding.JsStatsModuleProfile, StatsProfile>;
301
+ moduleReason: ExtractorsByOption<binding.JsStatsModuleReason, StatsModuleReason>;
302
+ chunk: ExtractorsByOption<binding.JsStatsChunk, KnownStatsChunk>;
303
+ chunkOrigin: ExtractorsByOption<JsOriginRecord, StatsChunkOrigin>;
304
+ error: ExtractorsByOption<binding.JsStatsError, StatsError>;
305
+ warning: ExtractorsByOption<binding.JsStatsError, StatsError>;
306
+ moduleTraceItem: ExtractorsByOption<binding.JsStatsModuleTrace, StatsModuleTraceItem>;
307
+ moduleTraceDependency: ExtractorsByOption<binding.JsStatsModuleTraceDependency, StatsModuleTraceDependency>;
308
+ };
309
+ export declare const iterateConfig: (config: Record<string, Record<string, Function>>, options: StatsOptions, fn: (a1: string, a2: Function) => void) => void;
310
+ type Child = {
311
+ children?: ItemChildren;
312
+ filteredChildren?: number;
313
+ };
314
+ type ItemChildren = Child[];
315
+ export declare const collapse: (children: ItemChildren) => Child[];
316
+ export declare const spaceLimited: (itemsAndGroups: ItemChildren, max: number, filteredChildrenLineReserved?: boolean) => {
317
+ children: any;
318
+ filteredChildren: any;
319
+ };
320
+ export declare const countWithChildren: (compilation: Compilation, getItems: (compilation: Compilation, key: string) => any[]) => number;
321
+ export declare const sortByField: (field: string) => ((a1: Object, a2: Object) => number);
322
+ export declare const assetGroup: (children: StatsAsset[]) => {
323
+ size: number;
324
+ };
325
+ export declare const moduleGroup: (children: {
326
+ size: number;
327
+ sizes: Record<string, number>;
328
+ }[]) => {
329
+ size: number;
330
+ sizes: Record<string, number>;
331
+ };
332
+ export declare const mergeToObject: (items: {
333
+ [key: string]: any;
334
+ name: string;
335
+ }[]) => Object;
336
+ export declare const errorsSpaceLimit: (errors: StatsError[], max: number) => {
337
+ errors: StatsError[];
338
+ filtered: number;
339
+ };
340
+ export declare const warningFromStatsWarning: (warning: binding.JsStatsError) => Error;
341
+ export {};
package/dist/swc.d.ts ADDED
@@ -0,0 +1,7 @@
1
+ import type { TransformOutput } from "./binding";
2
+ import type { JsMinifyOptions, Options as TransformOptions } from "@swc/types";
3
+ export type { TransformOutput, TransformOptions, JsMinifyOptions };
4
+ export declare function minify(source: string, options?: JsMinifyOptions): Promise<TransformOutput>;
5
+ export declare function minifySync(source: string, options?: JsMinifyOptions): TransformOutput;
6
+ export declare function transform(source: string, options?: TransformOptions): Promise<TransformOutput>;
7
+ export declare function transformSync(source: string, options?: TransformOptions): TransformOutput;
@@ -0,0 +1,8 @@
1
+ import binding from "../binding";
2
+ import type { CreatePartialRegisters } from "./types";
3
+ export declare class CodeGenerationResult {
4
+ #private;
5
+ constructor(result: binding.JsCodegenerationResult);
6
+ get(sourceType: string): string;
7
+ }
8
+ export declare const createCompilationHooksRegisters: CreatePartialRegisters<`Compilation`>;
@@ -0,0 +1,2 @@
1
+ import type { CreatePartialRegisters } from "./types";
2
+ export declare const createCompilerHooksRegisters: CreatePartialRegisters<`Compiler`>;
@@ -0,0 +1,2 @@
1
+ import type { CreatePartialRegisters } from "./types";
2
+ export declare const createContextModuleFactoryHooksRegisters: CreatePartialRegisters<`ContextModuleFactory`>;
@@ -0,0 +1,6 @@
1
+ export { createHtmlPluginHooksRegisters } from "../builtin-plugin/html-plugin/taps";
2
+ export { createCompilationHooksRegisters } from "./compilation";
3
+ export { createCompilerHooksRegisters } from "./compiler";
4
+ export { createContextModuleFactoryHooksRegisters } from "./contextModuleFactory";
5
+ export { createJavaScriptModulesHooksRegisters } from "./javascriptModules";
6
+ export { createNormalModuleFactoryHooksRegisters } from "./normalModuleFactory";
@@ -0,0 +1,2 @@
1
+ import type { CreatePartialRegisters } from "./types";
2
+ export declare const createJavaScriptModulesHooksRegisters: CreatePartialRegisters<`JavascriptModules`>;
@@ -0,0 +1,2 @@
1
+ import type { CreatePartialRegisters } from "./types";
2
+ export declare const createNormalModuleFactoryHooksRegisters: CreatePartialRegisters<`NormalModuleFactory`>;
@@ -0,0 +1,11 @@
1
+ import type binding from "../binding";
2
+ import type * as liteTapable from "@rspack/lite-tapable";
3
+ import type { Compiler } from "../Compiler";
4
+ type CreateHookMapRegisterTaps = <H extends liteTapable.Hook<any, any, any>>(registerKind: binding.RegisterJsTapKind, getHookMap: () => liteTapable.HookMap<H>, createTap: (queried: liteTapable.QueriedHookMap<H>) => any) => (stages: number[]) => binding.JsTap[];
5
+ type CreateHookRegisterTaps = <T, R, A>(registerKind: binding.RegisterJsTapKind, getHook: () => liteTapable.Hook<T, R, A>, createTap: (queried: liteTapable.QueriedHook<T, R, A>) => any) => (stages: number[]) => binding.JsTap[];
6
+ type RegisterTapKeys<T, L extends string> = T extends keyof binding.RegisterJsTaps ? (T extends L ? T : never) : never;
7
+ type PartialRegisters<L extends string> = {
8
+ [K in RegisterTapKeys<keyof binding.RegisterJsTaps, `register${L}${string}Taps`>]: binding.RegisterJsTaps[K];
9
+ };
10
+ export type CreatePartialRegisters<L extends string> = (getCompiler: () => Compiler, createTap: CreateHookRegisterTaps, createMapTap: CreateHookMapRegisterTaps) => PartialRegisters<L>;
11
+ export {};
@@ -0,0 +1,46 @@
1
+ export interface ChromeEvent {
2
+ name: string;
3
+ trackName?: string;
4
+ ph: "b" | "e" | "X" | "P";
5
+ processName?: string;
6
+ categories?: string[];
7
+ uuid: number;
8
+ ts: bigint;
9
+ args?: {
10
+ [key: string]: any;
11
+ };
12
+ }
13
+ type MakeOptional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
14
+ type PartialChromeEvent = MakeOptional<ChromeEvent, "ts" | "ph">;
15
+ export declare class JavaScriptTracer {
16
+ static state: "uninitialized" | "on" | "off";
17
+ static startTime: bigint;
18
+ static events: ChromeEvent[];
19
+ static layer: string;
20
+ static output: string;
21
+ static session: import("node:inspector").Session;
22
+ private static counter;
23
+ /**
24
+ * only first call take effects, subsequent calls will be ignored
25
+ * @param layer tracing layer
26
+ * @param output tracing output file path
27
+ */
28
+ static initJavaScriptTrace(layer: string, output: string): Promise<void>;
29
+ static uuid(): number;
30
+ static initCpuProfiler(): void;
31
+ /**
32
+ * only first call take effects, subsequent calls will be ignored
33
+ * @param isEnd true means we are at the end of tracing,and can append ']' to close the json
34
+ * @returns
35
+ */
36
+ static cleanupJavaScriptTrace(): Promise<void>;
37
+ static getTs(): bigint;
38
+ static getCommonEv(): {
39
+ ts: bigint;
40
+ cat: string;
41
+ };
42
+ static pushEvent(event: ChromeEvent): void;
43
+ static startAsync(events: PartialChromeEvent): void;
44
+ static endAsync(events: PartialChromeEvent): void;
45
+ }
46
+ export {};
@@ -0,0 +1,5 @@
1
+ import type { Compiler } from "../exports";
2
+ export declare class TraceHookPlugin {
3
+ name: string;
4
+ apply(compiler: Compiler): void;
5
+ }
@@ -0,0 +1,45 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/util/ArrayQueue.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
+ * @template T
12
+ */
13
+ declare class ArrayQueue<T> {
14
+ _list: T[];
15
+ _listReversed: T[];
16
+ constructor(items?: T[]);
17
+ /**
18
+ * Returns the number of elements in this queue.
19
+ * @returns {number} The number of elements in this queue.
20
+ */
21
+ get length(): number;
22
+ /**
23
+ * Empties the queue.
24
+ */
25
+ clear(): void;
26
+ /**
27
+ * Appends the specified element to this queue.
28
+ * @param {T} item The element to add.
29
+ * @returns {void}
30
+ */
31
+ enqueue(item: T): void;
32
+ /**
33
+ * Retrieves and removes the head of this queue.
34
+ * @returns {T | undefined} The head of the queue of `undefined` if this queue is empty.
35
+ */
36
+ dequeue(): T | undefined;
37
+ /**
38
+ * Finds and removes an item
39
+ * @param {T} item the item
40
+ * @returns {void}
41
+ */
42
+ delete(item: T): void;
43
+ [Symbol.iterator](): Generator<T, void, unknown>;
44
+ }
45
+ export default ArrayQueue;
@@ -0,0 +1,7 @@
1
+ type TaskCallback<Ret> = (err: Error | null, ret: Ret | null) => void;
2
+ export declare class AsyncTask<Param, Ret> {
3
+ #private;
4
+ constructor(task: (param: Param[], callback: (results: [Error | null, Ret | null][]) => void) => void);
5
+ exec(param: Param, callback: TaskCallback<Ret>): void;
6
+ }
7
+ export {};
@@ -0,0 +1,10 @@
1
+ type CallFn<D> = (args: D[]) => void;
2
+ export default class MergeCaller<D> {
3
+ private callArgs;
4
+ private callFn;
5
+ constructor(fn: CallFn<D>);
6
+ private finalCall;
7
+ pendingData(): D[];
8
+ push(...data: D[]): void;
9
+ }
10
+ export {};
@@ -0,0 +1,10 @@
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
+ export declare const formatSize: (size: unknown) => string;
@@ -0,0 +1,5 @@
1
+ import type { RawSplitChunkSizes } from "../binding";
2
+ declare class JsSplitChunkSizes {
3
+ static __to_binding(sizes?: number | Record<string, number>): number | RawSplitChunkSizes | undefined;
4
+ }
5
+ export { JsSplitChunkSizes };
@@ -0,0 +1 @@
1
+ export declare function assertNotNill(value: unknown): asserts value;
@@ -0,0 +1,2 @@
1
+ export type AssetCondition = string | RegExp;
2
+ export type AssetConditions = AssetCondition | AssetCondition[];
@@ -0,0 +1,54 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/suguru03/neo-async/blob/master/lib/async.js
4
+ *
5
+ * MIT Licensed
6
+ * Author Suguru Motegi
7
+ * Copyright (c) 2014-2018 Suguru Motegi
8
+ * https://github.com/suguru03/neo-async/blob/master/LICENSE
9
+ */
10
+ export interface Dictionary<T> {
11
+ [key: string]: T;
12
+ }
13
+ export type IterableCollection<T> = T[] | IterableIterator<T> | Dictionary<T>;
14
+ export type ErrorCallback<E = Error> = (err?: E | null) => void;
15
+ export type AsyncIterator<T, E = Error> = (item: T, callback: ErrorCallback<E>) => void;
16
+ /**
17
+ * @example
18
+ *
19
+ * // array
20
+ * var order = [];
21
+ * var array = [1, 3, 2];
22
+ * var iterator = function(num, done) {
23
+ * setTimeout(function() {
24
+ * order.push(num);
25
+ * done();
26
+ * }, num * 10);
27
+ * };
28
+ * asyncLib.each(array, iterator, function(err, res) {
29
+ * console.log(res); // undefined
30
+ * console.log(order); // [1, 2, 3]
31
+ * });
32
+ *
33
+ * @example
34
+ *
35
+ * // break
36
+ * var order = [];
37
+ * var array = [1, 3, 2];
38
+ * var iterator = function(num, done) {
39
+ * setTimeout(function() {
40
+ * order.push(num);
41
+ * done(null, num !== 2);
42
+ * }, num * 10);
43
+ * };
44
+ * asyncLib.each(array, iterator, function(err, res) {
45
+ * console.log(res); // undefined
46
+ * console.log(order); // [1, 2]
47
+ * });
48
+ *
49
+ */
50
+ declare function each<T, E = Error>(collection: IterableCollection<T>, iterator: AsyncIterator<T, E>, originalCallback: ErrorCallback<E>): void;
51
+ declare const _default: {
52
+ each: typeof each;
53
+ };
54
+ export default _default;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Check if these version matches:
3
+ * `@rspack/core`, Binding version
4
+ */
5
+ export declare const checkVersion: () => Error | null | undefined;
@@ -0,0 +1,24 @@
1
+ export declare const DELETE: unique symbol;
2
+ /**
3
+ * Merges two given objects and caches the result to avoid computation if same objects passed as arguments again.
4
+ * @example
5
+ * // performs cleverMerge(first, second), stores the result in WeakMap and returns result
6
+ * cachedCleverMerge({a: 1}, {a: 2})
7
+ * {a: 2}
8
+ * // when same arguments passed, gets the result from WeakMap and returns it.
9
+ * cachedCleverMerge({a: 1}, {a: 2})
10
+ * {a: 2}
11
+ * @param first first object
12
+ * @param second second object
13
+ * @returns merged object of first and second object
14
+ */
15
+ export declare const cachedCleverMerge: <First, Second>(first: First, second: Second) => First | Second | (First & Second);
16
+ /**
17
+ * Merges two objects. Objects are deeply clever merged.
18
+ * Arrays might reference the old value with "...".
19
+ * Non-object values take preference over object values.
20
+ * @param first first object
21
+ * @param second second object
22
+ * @returns merged object of first and second object
23
+ */
24
+ export declare const cleverMerge: <First, Second>(first: First, second: Second) => First | Second | (First & Second);
@@ -0,0 +1,16 @@
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
+ export type Comparator = <T>(arg0: T, arg1: T) => -1 | 0 | 1;
11
+ type Selector<A, B> = (input: A) => B;
12
+ export declare const concatComparators: (...comps: Comparator[]) => Comparator;
13
+ export declare const compareIds: <T = string | number>(a: T, b: T) => -1 | 0 | 1;
14
+ export declare const compareSelect: <T, R>(getter: Selector<T, R>, comparator: Comparator) => Comparator;
15
+ export declare const compareNumbers: (a: number, b: number) => 0 | 1 | -1;
16
+ export {};
@@ -0,0 +1,16 @@
1
+ /**
2
+ * The following code is modified based on
3
+ * https://github.com/webpack/webpack/blob/4b4ca3b/lib/util/createHash.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 Hash from "./hash";
11
+ /**
12
+ * Creates a hash by name or function
13
+ * @param algorithm the algorithm name or a constructor creating a hash
14
+ * @returns the hash
15
+ */
16
+ export declare const createHash: (algorithm: "debug" | "xxhash64" | "md4" | "native-md4" | (string & {}) | (new () => Hash)) => Hash;
@@ -0,0 +1 @@
1
+ export declare function createReadonlyMap<T>(obj: Pick<ReadonlyMap<string, T>, "get" | "keys">): ReadonlyMap<string, Readonly<T>>;
@@ -0,0 +1,9 @@
1
+ export type FakeHook<T> = T & {
2
+ _fakeHook: true;
3
+ };
4
+ export declare function createFakeCompilationDependencies(getDeps: () => string[], addDeps: (deps: string[]) => void): {
5
+ [Symbol.iterator](): Generator<string, void, unknown>;
6
+ has(dep: string): boolean;
7
+ add: (dep: string) => void;
8
+ addAll: (deps: Iterable<string>) => void;
9
+ };