Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: support new tsfn (stage 1) #5885

Merged
merged 1 commit into from
Mar 12, 2024
Merged

refactor: support new tsfn (stage 1) #5885

merged 1 commit into from
Mar 12, 2024

Conversation

h-a-n-a
Copy link
Collaborator

@h-a-n-a h-a-n-a commented Mar 7, 2024

Summary

This PR refactored the old tsfn impl. The original impl has a few problems as follows:

  • Type definition It's hard to read whether the original JS function returned Promise<T> or T. This is originally designed for loader, since JS Loaders can be called both synchronously and asynchronously. This usage has been spread to most of JS functions and each signature should be defined explicitly.
  • Type conversion The original tsfn locates in the NAPI-RS crate, it's hard for us to extract implementation like feat(napi): convert ToNapiValue tuple to variadic tsfn napi-rs/napi-rs#1475 because of the orphan rule especially paired with generics which trait constraint is defined in NAPI-RS.

In this new tsfn impl, the improvements are as follows:

  • Type definition Type should be explicitly defined, such as ThreadsafeFunction<(A, B), Either<A, Promise<T>>>.
  • Tuple type auto conversion ThreadsafeFunction<(A, B), ...> would be converted to the two parameters for JS functions. In this example: it's (a: A, b: B) => ...
  • Auto FromNapiValue It's not necessary to convert JSFunction to ThreadsafeFunction on your own, just apply derive#[napi(object, object_to_js = false)] and replace JSFunction with ThreadsafeFunction<T, R>
  • Builtin sync and async call For threadsafe functions returning Promise<T>, it's up to your choice to either call with call_with_promise to resolve to it's original value with error being carefully converted to JS and call_with_sync with the original Promise<T> being returned. If Either<T, Promise<T>> is returned, you may also call_with_auto to extract the value T.
  • Escape hatch For old functions that haven't been migrated to the new implementation, method call is still provided for you to extract the value behind Promise<T> | T by calling method call, you may keep the threadsafe function's type signature as-is, such as ThreadsafeFunction<(A, B), T>. This is highly NOT recommended tho.

NAPI Refs:

Require Documentation?

  • No
  • Yes, the corresponding rspack-website PR is __

@h-a-n-a h-a-n-a changed the title refactor: support new tsfn refactor: support new tsfn (stage 1) Mar 7, 2024
@h-a-n-a h-a-n-a mentioned this pull request Mar 8, 2024
2 tasks
Copy link
Collaborator Author

h-a-n-a commented Mar 8, 2024

This stack of pull requests is managed by Graphite. Learn more about stacking.

Join @h-a-n-a and the rest of your teammates on Graphite Graphite

@h-a-n-a h-a-n-a force-pushed the feat/new-tsfn branch 2 times, most recently from af940c1 to 59cafdf Compare March 8, 2024 14:29
Copy link
Contributor

github-actions bot commented Mar 8, 2024

Test Compatibility Diff

main pr diff
75.797% 75.728% ❌ ⏬ -0.069
Unpassed tests

2 ⚪️ aggressive-splitting-entry: TODO
3 ⚪️ aggressive-splitting-on-demand: TODO
4 ⚪️ all-stats: TODO
5 ⚪️ asset: TODO
6 ⚪️ asset-concat: TODO
7 ⚪️ async-commons-chunk: TODO
8 ⚪️ async-commons-chunk-auto: TODO
9 ⚪️ child-compiler-apply-entry-option: TODO
10 ⚪️ chunk-module-id-range: TODO
11 ⚪️ chunks: TODO
12 ⚪️ chunks-development: TODO
13 ⚪️ circular-correctness: TODO
14 ⚪️ color-disabled: TODO
15 ⚪️ color-enabled: TODO
16 ⚪️ color-enabled-custom: TODO
17 ⚪️ common-libs: TODO
18 ⚪️ commons-chunk-min-size-0: TODO
19 ⚪️ commons-chunk-min-size-Infinity: TODO
20 ⚪️ commons-plugin-issue-4980: TODO
21 ⚪️ concat-and-sideeffects: TODO
22 ⚪️ context-independence: TODO
23 ⚪️ custom-terser: TODO
24 ⚪️ define-plugin: TODO
25 ⚪️ details-error: TODO
26 ⚪️ dll-reference-plugin-issue-7624: TODO
27 ⚪️ dll-reference-plugin-issue-7624-error: TODO
28 ⚪️ entry-filename: TODO
29 ⚪️ exclude-with-loader: TODO
30 ⚪️ external: TODO
31 ⚪️ graph-correctness-entries: TODO
32 ⚪️ graph-correctness-modules: TODO
33 ⚪️ graph-roots: TODO
34 ⚪️ ignore-warnings: TODO
35 ⚪️ immutable: TODO
36 ⚪️ import-context-filter: TODO
37 ⚪️ import-weak: TODO
38 ⚪️ import-weak-parser-option: TODO
39 ⚪️ import-with-invalid-options-comments: TODO
40 ⚪️ issue-7577: TODO
41 🔴 limit-chunk-count-plugin: #4304
42 ⚪️ logging: TODO
43 ⚪️ logging-debug: TODO
44 ⚪️ max-modules: TODO
45 ⚪️ max-modules-default: TODO
46 ⚪️ module-assets: TODO
47 ⚪️ module-deduplication: TODO
48 ⚪️ module-deduplication-named: TODO
49 ⚪️ module-federation-custom-exposed-module-name: TODO
50 ⚪️ module-not-found-error: TODO
51 ⚪️ module-reasons: TODO
52 ⚪️ module-trace-disabled-in-error: TODO
53 ⚪️ module-trace-enabled-in-error: TODO
54 ⚪️ named-chunk-groups: TODO
55 ⚪️ named-chunks-plugin: TODO
56 ⚪️ named-chunks-plugin-async: TODO
57 ⚪️ no-emit-on-errors-plugin-with-child-error: TODO
58 ⚪️ optimize-chunks: TODO
59 ⚪️ output-module: TODO
60 ⚪️ parse-error: TODO
61 ⚪️ performance-different-mode-and-target: TODO
62 ⚪️ performance-disabled: TODO
63 ⚪️ performance-error: TODO
64 ⚪️ performance-no-async-chunks-shown: TODO
65 ⚪️ performance-no-hints: TODO
66 ⚪️ performance-oversize-limit-error: TODO
67 ⚪️ prefetch: TODO
68 ⚪️ prefetch-preload-mixed: TODO
69 ⚪️ preload: TODO
70 ⚪️ preset-detailed: TODO
71 ⚪️ preset-errors-only: TODO
72 ⚪️ preset-errors-only-error: TODO
73 ⚪️ preset-errors-warnings: TODO
74 ⚪️ preset-minimal: TODO
75 ⚪️ preset-minimal-simple: TODO
76 ⚪️ preset-mixed-array: TODO
77 ⚪️ preset-none: TODO
78 ⚪️ preset-none-array: TODO
79 ⚪️ preset-none-error: TODO
80 ⚪️ preset-normal: TODO
81 ⚪️ preset-normal-performance: TODO
82 ⚪️ preset-normal-performance-ensure-filter-sourcemaps: TODO
83 ⚪️ preset-summary: TODO
84 ⚪️ preset-verbose: TODO
85 ⚪️ real-content-hash: TODO
86 ⚪️ related-assets: TODO
87 ⚪️ resolve-plugin-context: TODO
88 ⚪️ reverse-sort-modules: TODO
89 ⚪️ runtime-chunk: TODO
90 ⚪️ runtime-chunk-integration: TODO
91 ⚪️ runtime-chunk-issue-7382: TODO
92 ⚪️ runtime-chunk-single: TODO
93 ⚪️ runtime-specific-used-exports: TODO
94 ⚪️ scope-hoisting-bailouts: TODO
95 ⚪️ scope-hoisting-multi: TODO
96 ⚪️ side-effects-issue-7428: TODO
97 ⚪️ side-effects-optimization: TODO
98 ⚪️ side-effects-simple-unused: TODO
99 ⚪️ simple: TODO
100 ⚪️ simple-more-info: TODO
101 ⚪️ split-chunks: TODO
102 ⚪️ split-chunks-automatic-name: TODO
103 ⚪️ split-chunks-chunk-name: TODO
104 ⚪️ split-chunks-combinations: TODO
105 ⚪️ split-chunks-issue-6413: TODO
106 ⚪️ split-chunks-issue-6696: TODO
107 ⚪️ split-chunks-issue-7401: TODO
108 ⚪️ split-chunks-keep-remaining-size: TODO
109 ⚪️ split-chunks-max-size: TODO
110 ⚪️ split-chunks-min-size-reduction: TODO
111 ⚪️ split-chunks-prefer-bigger-splits: TODO
112 ⚪️ split-chunks-runtime-specific: TODO
113 ⚪️ tree-shaking: TODO
114 ⚪️ wasm-explorer-examples-sync: TODO
120 🔴 Stats chunkGroups: TODO
121 🔴 Stats chunkGroups: TODO
122 🔴 Stats chunkGroups: TODO
125 🔴 Compiler: TODO
126 🔴 Compiler: TODO
127 🔴 Compiler: TODO
128 🔴 Compiler: TODO
129 🔴 Compiler: TODO
132 🔴 Compiler methods isChild: TODO
144 🔴 Compiler: TODO
146 🔴 Compiler: TODO
150 🔴 Compiler: TODO
153 🔴 Compiler: TODO
155 🔴 Compiler: TODO
162 ⚪️ HotTestCases async-node child-compiler issue-9706: TODO
163 ⚪️ HotTestCases async-node chunks accept-system-import: TODO
164 ⚪️ HotTestCases async-node chunks accept-system-import-webpackhot: TODO
165 ⚪️ HotTestCases async-node chunks dynamic-system-import: TODO
166 ⚪️ HotTestCases async-node chunks split-chunks: TODO
167 ⚪️ HotTestCases async-node chunks split-chunks-webpackhot: TODO
168 ⚪️ HotTestCases async-node chunks system-import: TODO
169 🔴 HotTestCases async-node chunks update-chunk-loading-runtime: #5596
170 ⚪️ HotTestCases async-node code-generation this-in-accept: TODO
171 ⚪️ HotTestCases async-node code-generation this-in-accept-webpackhot: TODO
172 ⚪️ HotTestCases async-node concat reload-compat-flag: TODO
173 ⚪️ HotTestCases async-node concat reload-external: TODO
177 ⚪️ HotTestCases async-node define issue-6962: TODO
178 ⚪️ HotTestCases async-node determinism issue-10174: TODO
179 ⚪️ HotTestCases async-node disposing remove-chunk-with-shared: TODO
180 ⚪️ HotTestCases async-node disposing remove-chunk-with-shared-in-other-runtime: TODO
181 ⚪️ HotTestCases async-node disposing runtime-independent-filename: TODO
182 ⚪️ HotTestCases async-node errors decline: TODO
183 ⚪️ HotTestCases async-node errors decline-webpackhot: TODO
184 ⚪️ HotTestCases async-node errors events: TODO
185 ⚪️ HotTestCases async-node errors self-decline: TODO
186 ⚪️ HotTestCases async-node errors unaccepted: TODO
187 ⚪️ HotTestCases async-node errors unaccepted-ignored: TODO
188 ⚪️ HotTestCases async-node esm-dependency-import import-meta-webpack-hot: TODO
189 ⚪️ HotTestCases async-node esm-dependency-import module-hot: TODO
190 ⚪️ HotTestCases async-node harmony auto-import: TODO
191 ⚪️ HotTestCases async-node harmony auto-import-default: TODO
192 ⚪️ HotTestCases async-node harmony auto-import-multiple: TODO
193 ⚪️ HotTestCases async-node harmony auto-reexport: TODO
194 ⚪️ HotTestCases async-node hashing exports-info-influence: TODO
195 ⚪️ HotTestCases async-node hashing full-hash-main: TODO
196 ⚪️ HotTestCases async-node hashing full-hash-syntax-error: TODO
197 ⚪️ HotTestCases async-node invalidate conditional-accept: TODO
198 ⚪️ HotTestCases async-node invalidate during-idle: TODO
202 ⚪️ HotTestCases async-node lazy-compilation context: TODO
203 ⚪️ HotTestCases async-node lazy-compilation https: TODO
204 ⚪️ HotTestCases async-node lazy-compilation module-test: TODO
205 ⚪️ HotTestCases async-node lazy-compilation only-entries: TODO
206 ⚪️ HotTestCases async-node lazy-compilation simple: TODO
207 ⚪️ HotTestCases async-node lazy-compilation unrelated: TODO
208 ⚪️ HotTestCases async-node loader-import-module css: TODO
209 ⚪️ HotTestCases async-node numeric-ids add-remove-chunks: TODO
210 ⚪️ HotTestCases async-node numeric-ids production: TODO
211 ⚪️ HotTestCases async-node parsing hot-api-optional-chaining: TODO
224 🔴 HotTestCases async-node recover recover-after-self-error: #5596
225 ⚪️ HotTestCases async-node runtime accept: TODO
226 ⚪️ HotTestCases async-node runtime bubble-async: TODO
227 ⚪️ HotTestCases async-node runtime bubble-update: TODO
228 ⚪️ HotTestCases async-node runtime circular: TODO
229 ⚪️ HotTestCases async-node runtime dispose-removed-chunk: TODO
230 ⚪️ HotTestCases async-node runtime dispose-removed-module: TODO
231 ⚪️ HotTestCases async-node runtime import-after-download: TODO
232 ⚪️ HotTestCases async-node runtime replace-runtime-module: TODO
233 ⚪️ HotTestCases async-node runtime require-disposed-module-warning: TODO
234 ⚪️ HotTestCases async-node runtime root-error: TODO
235 ⚪️ HotTestCases async-node runtime self-accept-and-dispose: TODO
236 ⚪️ HotTestCases async-node runtime self-accept-factory: TODO
237 ⚪️ HotTestCases async-node runtime update-multiple-modules: TODO
238 ⚪️ HotTestCases async-node runtime update-multiple-times: TODO
239 ⚪️ HotTestCases async-node sharing share-plugin: TODO
240 ⚪️ HotTestCases async-node status accept: TODO
241 ⚪️ HotTestCases async-node status check: TODO
242 ⚪️ HotTestCases async-node unexpected-invalidation used-exports: TODO
243 🔴 HotTestCases async-node worker move-between-runtime: #5597
244 ⚪️ HotTestCases async-node worker remove-add-worker: TODO
249 ⚪️ HotTestCases webworker child-compiler issue-9706: TODO
250 ⚪️ HotTestCases webworker chunks accept-system-import: TODO
251 ⚪️ HotTestCases webworker chunks accept-system-import-webpackhot: TODO
252 ⚪️ HotTestCases webworker chunks dynamic-system-import: TODO
253 ⚪️ HotTestCases webworker chunks split-chunks: TODO
254 ⚪️ HotTestCases webworker chunks split-chunks-webpackhot: TODO
255 ⚪️ HotTestCases webworker chunks system-import: TODO
256 🔴 HotTestCases webworker chunks update-chunk-loading-runtime: #5596
257 ⚪️ HotTestCases webworker code-generation this-in-accept: TODO
258 ⚪️ HotTestCases webworker code-generation this-in-accept-webpackhot: TODO
259 ⚪️ HotTestCases webworker concat reload-compat-flag: TODO
260 ⚪️ HotTestCases webworker concat reload-external: TODO
264 ⚪️ HotTestCases webworker define issue-6962: TODO
265 ⚪️ HotTestCases webworker determinism issue-10174: TODO
266 ⚪️ HotTestCases webworker disposing remove-chunk-with-shared: TODO
267 ⚪️ HotTestCases webworker disposing remove-chunk-with-shared-in-other-runtime: TODO
268 ⚪️ HotTestCases webworker disposing runtime-independent-filename: TODO
269 ⚪️ HotTestCases webworker errors decline: TODO
270 ⚪️ HotTestCases webworker errors decline-webpackhot: TODO
271 ⚪️ HotTestCases webworker errors events: TODO
272 ⚪️ HotTestCases webworker errors self-decline: TODO
273 ⚪️ HotTestCases webworker errors unaccepted: TODO
274 ⚪️ HotTestCases webworker errors unaccepted-ignored: TODO
275 ⚪️ HotTestCases webworker esm-dependency-import import-meta-webpack-hot: TODO
276 ⚪️ HotTestCases webworker esm-dependency-import module-hot: TODO
277 ⚪️ HotTestCases webworker harmony auto-import: TODO
278 ⚪️ HotTestCases webworker harmony auto-import-default: TODO
279 ⚪️ HotTestCases webworker harmony auto-import-multiple: TODO
280 ⚪️ HotTestCases webworker harmony auto-reexport: TODO
281 ⚪️ HotTestCases webworker hashing exports-info-influence: TODO
282 ⚪️ HotTestCases webworker hashing full-hash-main: TODO
283 ⚪️ HotTestCases webworker hashing full-hash-syntax-error: TODO
284 ⚪️ HotTestCases webworker invalidate conditional-accept: TODO
285 ⚪️ HotTestCases webworker invalidate during-idle: TODO
289 ⚪️ HotTestCases webworker lazy-compilation context: TODO
290 ⚪️ HotTestCases webworker lazy-compilation https: TODO
291 ⚪️ HotTestCases webworker lazy-compilation module-test: TODO
292 ⚪️ HotTestCases webworker lazy-compilation only-entries: TODO
293 ⚪️ HotTestCases webworker lazy-compilation simple: TODO
294 ⚪️ HotTestCases webworker lazy-compilation unrelated: TODO
295 ⚪️ HotTestCases webworker loader-import-module css: TODO
296 ⚪️ HotTestCases webworker numeric-ids add-remove-chunks: TODO
297 ⚪️ HotTestCases webworker numeric-ids production: TODO
298 ⚪️ HotTestCases webworker parsing hot-api-optional-chaining: TODO
311 🔴 HotTestCases webworker recover recover-after-self-error: #5596
312 ⚪️ HotTestCases webworker runtime accept: TODO
313 ⚪️ HotTestCases webworker runtime bubble-async: TODO
314 ⚪️ HotTestCases webworker runtime bubble-update: TODO
315 ⚪️ HotTestCases webworker runtime circular: TODO
316 ⚪️ HotTestCases webworker runtime dispose-removed-chunk: TODO
317 ⚪️ HotTestCases webworker runtime dispose-removed-module: TODO
318 ⚪️ HotTestCases webworker runtime import-after-download: TODO
319 ⚪️ HotTestCases webworker runtime replace-runtime-module: TODO
320 ⚪️ HotTestCases webworker runtime require-disposed-module-warning: TODO
321 ⚪️ HotTestCases webworker runtime root-error: TODO
322 ⚪️ HotTestCases webworker runtime self-accept-and-dispose: TODO
323 ⚪️ HotTestCases webworker runtime self-accept-factory: TODO
324 ⚪️ HotTestCases webworker runtime update-multiple-modules: TODO
325 ⚪️ HotTestCases webworker runtime update-multiple-times: TODO
326 ⚪️ HotTestCases webworker sharing share-plugin: TODO
327 ⚪️ HotTestCases webworker status accept: TODO
328 ⚪️ HotTestCases webworker status check: TODO
329 ⚪️ HotTestCases webworker unexpected-invalidation used-exports: TODO
330 🔴 HotTestCases webworker worker move-between-runtime: #5597
338 ⚪️ HotTestCases web child-compiler issue-9706: TODO
339 ⚪️ HotTestCases web chunks accept-system-import: TODO
340 ⚪️ HotTestCases web chunks accept-system-import-webpackhot: TODO
341 ⚪️ HotTestCases web chunks dynamic-system-import: TODO
342 ⚪️ HotTestCases web chunks split-chunks: TODO
343 ⚪️ HotTestCases web chunks split-chunks-webpackhot: TODO
344 ⚪️ HotTestCases web chunks system-import: TODO
345 🔴 HotTestCases web chunks update-chunk-loading-runtime: #5596
346 ⚪️ HotTestCases web code-generation this-in-accept: TODO
347 ⚪️ HotTestCases web code-generation this-in-accept-webpackhot: TODO
348 ⚪️ HotTestCases web concat reload-compat-flag: TODO
349 ⚪️ HotTestCases web concat reload-external: TODO
353 ⚪️ HotTestCases web define issue-6962: TODO
354 ⚪️ HotTestCases web determinism issue-10174: TODO
355 ⚪️ HotTestCases web disposing remove-chunk-with-shared: TODO
356 ⚪️ HotTestCases web disposing remove-chunk-with-shared-in-other-runtime: TODO
357 ⚪️ HotTestCases web disposing runtime-independent-filename: TODO
358 ⚪️ HotTestCases web errors decline: TODO
359 ⚪️ HotTestCases web errors decline-webpackhot: TODO
360 ⚪️ HotTestCases web errors events: TODO
361 ⚪️ HotTestCases web errors self-decline: TODO
362 ⚪️ HotTestCases web errors unaccepted: TODO
363 ⚪️ HotTestCases web errors unaccepted-ignored: TODO
364 ⚪️ HotTestCases web esm-dependency-import import-meta-webpack-hot: TODO
365 ⚪️ HotTestCases web esm-dependency-import module-hot: TODO
366 ⚪️ HotTestCases web harmony auto-import: TODO
367 ⚪️ HotTestCases web harmony auto-import-default: TODO
368 ⚪️ HotTestCases web harmony auto-import-multiple: TODO
369 ⚪️ HotTestCases web harmony auto-reexport: TODO
370 ⚪️ HotTestCases web hashing exports-info-influence: TODO
371 ⚪️ HotTestCases web hashing full-hash-main: TODO
372 ⚪️ HotTestCases web hashing full-hash-syntax-error: TODO
373 ⚪️ HotTestCases web invalidate conditional-accept: TODO
374 ⚪️ HotTestCases web invalidate during-idle: TODO
378 ⚪️ HotTestCases web lazy-compilation context: TODO
379 ⚪️ HotTestCases web lazy-compilation https: TODO
380 ⚪️ HotTestCases web lazy-compilation module-test: TODO
381 ⚪️ HotTestCases web lazy-compilation only-entries: TODO
382 ⚪️ HotTestCases web lazy-compilation simple: TODO
383 ⚪️ HotTestCases web lazy-compilation unrelated: TODO
384 ⚪️ HotTestCases web loader-import-module css: TODO
385 ⚪️ HotTestCases web numeric-ids add-remove-chunks: TODO
386 ⚪️ HotTestCases web numeric-ids production: TODO
387 ⚪️ HotTestCases web parsing hot-api-optional-chaining: TODO
400 🔴 HotTestCases web recover recover-after-self-error: #5596
401 ⚪️ HotTestCases web runtime accept: TODO
402 ⚪️ HotTestCases web runtime bubble-async: TODO
403 ⚪️ HotTestCases web runtime bubble-update: TODO
404 ⚪️ HotTestCases web runtime circular: TODO
405 ⚪️ HotTestCases web runtime dispose-removed-chunk: TODO
406 ⚪️ HotTestCases web runtime dispose-removed-module: TODO
407 ⚪️ HotTestCases web runtime import-after-download: TODO
408 ⚪️ HotTestCases web runtime replace-runtime-module: TODO
409 ⚪️ HotTestCases web runtime require-disposed-module-warning: TODO
410 ⚪️ HotTestCases web runtime root-error: TODO
411 ⚪️ HotTestCases web runtime self-accept-and-dispose: TODO
412 ⚪️ HotTestCases web runtime self-accept-factory: TODO
413 ⚪️ HotTestCases web runtime update-multiple-modules: TODO
414 ⚪️ HotTestCases web runtime update-multiple-times: TODO
415 ⚪️ HotTestCases web sharing share-plugin: TODO
416 ⚪️ HotTestCases web status accept: TODO
417 ⚪️ HotTestCases web status check: TODO
418 ⚪️ HotTestCases web unexpected-invalidation used-exports: TODO
419 🔴 HotTestCases web worker move-between-runtime: #5597
427 ⚪️ HotTestCases node child-compiler issue-9706: TODO
428 ⚪️ HotTestCases node chunks accept-system-import: TODO
429 ⚪️ HotTestCases node chunks accept-system-import-webpackhot: TODO
430 ⚪️ HotTestCases node chunks dynamic-system-import: TODO
431 ⚪️ HotTestCases node chunks split-chunks: TODO
432 ⚪️ HotTestCases node chunks split-chunks-webpackhot: TODO
433 ⚪️ HotTestCases node chunks system-import: TODO
434 🔴 HotTestCases node chunks update-chunk-loading-runtime: #5596
435 ⚪️ HotTestCases node code-generation this-in-accept: TODO
436 ⚪️ HotTestCases node code-generation this-in-accept-webpackhot: TODO
437 ⚪️ HotTestCases node concat reload-compat-flag: TODO
438 ⚪️ HotTestCases node concat reload-external: TODO
442 ⚪️ HotTestCases node define issue-6962: TODO
443 ⚪️ HotTestCases node determinism issue-10174: TODO
444 ⚪️ HotTestCases node disposing remove-chunk-with-shared: TODO
445 ⚪️ HotTestCases node disposing remove-chunk-with-shared-in-other-runtime: TODO
446 ⚪️ HotTestCases node disposing runtime-independent-filename: TODO
447 ⚪️ HotTestCases node errors decline: TODO
448 ⚪️ HotTestCases node errors decline-webpackhot: TODO
449 ⚪️ HotTestCases node errors events: TODO
450 ⚪️ HotTestCases node errors self-decline: TODO
451 ⚪️ HotTestCases node errors unaccepted: TODO
452 ⚪️ HotTestCases node errors unaccepted-ignored: TODO
453 ⚪️ HotTestCases node esm-dependency-import import-meta-webpack-hot: TODO
454 ⚪️ HotTestCases node esm-dependency-import module-hot: TODO
455 ⚪️ HotTestCases node harmony auto-import: TODO
456 ⚪️ HotTestCases node harmony auto-import-default: TODO
457 ⚪️ HotTestCases node harmony auto-import-multiple: TODO
458 ⚪️ HotTestCases node harmony auto-reexport: TODO
459 ⚪️ HotTestCases node hashing exports-info-influence: TODO
460 ⚪️ HotTestCases node hashing full-hash-main: TODO
461 ⚪️ HotTestCases node hashing full-hash-syntax-error: TODO
462 ⚪️ HotTestCases node invalidate conditional-accept: TODO
463 ⚪️ HotTestCases node invalidate during-idle: TODO
467 ⚪️ HotTestCases node lazy-compilation context: TODO
468 ⚪️ HotTestCases node lazy-compilation https: TODO
469 ⚪️ HotTestCases node lazy-compilation module-test: TODO
470 ⚪️ HotTestCases node lazy-compilation only-entries: TODO
471 ⚪️ HotTestCases node lazy-compilation simple: TODO
472 ⚪️ HotTestCases node lazy-compilation unrelated: TODO
473 ⚪️ HotTestCases node loader-import-module css: TODO
474 ⚪️ HotTestCases node numeric-ids add-remove-chunks: TODO
475 ⚪️ HotTestCases node numeric-ids production: TODO
476 ⚪️ HotTestCases node parsing hot-api-optional-chaining: TODO
489 🔴 HotTestCases node recover recover-after-self-error: #5596
490 ⚪️ HotTestCases node runtime accept: TODO
491 ⚪️ HotTestCases node runtime bubble-async: TODO
492 ⚪️ HotTestCases node runtime bubble-update: TODO
493 ⚪️ HotTestCases node runtime circular: TODO
494 ⚪️ HotTestCases node runtime dispose-removed-chunk: TODO
495 ⚪️ HotTestCases node runtime dispose-removed-module: TODO
496 ⚪️ HotTestCases node runtime import-after-download: TODO
497 ⚪️ HotTestCases node runtime replace-runtime-module: TODO
498 ⚪️ HotTestCases node runtime require-disposed-module-warning: TODO
499 ⚪️ HotTestCases node runtime root-error: TODO
500 ⚪️ HotTestCases node runtime self-accept-and-dispose: TODO
501 ⚪️ HotTestCases node runtime self-accept-factory: TODO
502 ⚪️ HotTestCases node runtime update-multiple-modules: TODO
503 ⚪️ HotTestCases node runtime update-multiple-times: TODO
504 ⚪️ HotTestCases node sharing share-plugin: TODO
505 ⚪️ HotTestCases node status accept: TODO
506 ⚪️ HotTestCases node status check: TODO
507 ⚪️ HotTestCases node unexpected-invalidation used-exports: TODO
508 🔴 HotTestCases node worker move-between-runtime: #5597
528 🔴 MultiCompiler: TODO
533 ⚪️ Examples aggressive-merging: TODO
534 ⚪️ Examples asset-advanced: TODO
538 ⚪️ Examples cjs-tree-shaking: TODO
542 ⚪️ Examples code-splitting-bundle-loader: TODO
551 ⚪️ Examples common-chunk-grandchildren: TODO
554 ⚪️ Examples custom-json-modules: TODO
555 ⚪️ Examples dll: TODO
556 ⚪️ Examples dll-app-and-vendor/0-vendor: TODO
557 ⚪️ Examples dll-app-and-vendor/1-app: TODO
558 ⚪️ Examples dll-entry-only: TODO
559 ⚪️ Examples dll-user: TODO
560 ⚪️ Examples explicit-vendor-chunk: TODO
568 ⚪️ Examples http2-aggressive-splitting: TODO
570 ⚪️ Examples lazy-compilation: TODO
576 ⚪️ Examples module-federation: TODO
583 ⚪️ Examples persistent-caching: TODO
592 ⚪️ Examples typescript: TODO
597 ⚪️ ConfigTestCases additional-pass simple simple: TODO
598 ⚪️ ConfigTestCases amd disabled disabled: TODO
599 ⚪️ ConfigTestCases asset-emitted normal normal: TODO
600 ⚪️ ConfigTestCases asset-modules assetModuleFilename assetModuleFilename: TODO
604 ⚪️ ConfigTestCases asset-modules custom-condition custom-condition: TODO
605 ⚪️ ConfigTestCases asset-modules custom-encoder custom-encoder: TODO
606 ⚪️ ConfigTestCases asset-modules data-url data-url: TODO
607 ⚪️ ConfigTestCases asset-modules different-query different-query: TODO
608 ⚪️ ConfigTestCases asset-modules emit emit: TODO
609 ⚪️ ConfigTestCases asset-modules file-loader file-loader: TODO
610 ⚪️ ConfigTestCases asset-modules file-url file-url: TODO
611 ⚪️ ConfigTestCases asset-modules generator-asset-publicPath generator-asset-publicPath: TODO
612 ⚪️ ConfigTestCases asset-modules generator-asset-publicPath-hash generator-asset-publicPath-hash: TODO
613 ⚪️ ConfigTestCases asset-modules global-options global-options: TODO
614 ⚪️ ConfigTestCases asset-modules http-url http-url: TODO
615 ⚪️ ConfigTestCases asset-modules ignore ignore: TODO
616 ⚪️ ConfigTestCases asset-modules input-data-url input-data-url: TODO
617 ⚪️ ConfigTestCases asset-modules input-data-url-encoding input-data-url-encoding: TODO
618 ⚪️ ConfigTestCases asset-modules opus opus: TODO
619 ⚪️ ConfigTestCases asset-modules overridePath overridePath: TODO
620 ⚪️ ConfigTestCases asset-modules path path: TODO
621 ⚪️ ConfigTestCases asset-modules publicPath publicPath: TODO
622 ⚪️ ConfigTestCases asset-modules query query: TODO
623 ⚪️ ConfigTestCases asset-modules query-and-custom-condition query-and-custom-condition: TODO
624 ⚪️ ConfigTestCases asset-modules query-and-custom-encoder query-and-custom-encoder: TODO
625 ⚪️ ConfigTestCases asset-modules real-content-hash real-content-hash: TODO
626 ⚪️ ConfigTestCases asset-modules resource-from-data-uri resource-from-data-uri: TODO
627 ⚪️ ConfigTestCases asset-modules rule-generator-outputPath rule-generator-outputPath: TODO
628 ⚪️ ConfigTestCases asset-modules rule-generator-publicPath rule-generator-publicPath: TODO
629 ⚪️ ConfigTestCases asset-modules rule-generator-publicPath-override rule-generator-publicPath-override: TODO
630 ⚪️ ConfigTestCases asset-modules source source: TODO
631 ⚪️ ConfigTestCases asset-modules types types: TODO
632 ⚪️ ConfigTestCases asset-modules unsafe-cache-13827 unsafe-cache-13827: TODO
642 ⚪️ ConfigTestCases asset-url target-node3 target-node3: TODO
643 ⚪️ ConfigTestCases asset-url target-web1 target-web1: TODO
644 ⚪️ ConfigTestCases asset-url target-web2 target-web2: TODO
645 ⚪️ ConfigTestCases asset-url target-webworker1 target-webworker1: TODO
646 ⚪️ ConfigTestCases asset-url target-webworker2 target-webworker2: TODO
647 ⚪️ ConfigTestCases assets delete-asset delete-asset: TODO
648 ⚪️ ConfigTestCases async-commons-chunk all-selected all-selected: TODO
649 ⚪️ ConfigTestCases async-commons-chunk duplicate duplicate: TODO
650 ⚪️ ConfigTestCases async-commons-chunk existing-name existing-name: TODO
651 ⚪️ ConfigTestCases async-commons-chunk nested nested: TODO
652 ⚪️ ConfigTestCases async-commons-chunk node node: TODO
653 ⚪️ ConfigTestCases async-commons-chunk simple simple: TODO
656 ⚪️ ConfigTestCases async-library 1-use-library 1-use-library: TODO
657 ⚫️ ConfigTestCases cache-dependencies managed-items managed-items: No plan
658 ⚫️ ConfigTestCases cache-dependencies managed-items-unsafe-cache managed-items-unsafe-cache: No plan
659 ⚪️ ConfigTestCases chunk-graph issue-15173 issue-15173: TODO
669 ⚪️ ConfigTestCases chunk-index order-multiple-entries order-multiple-entries: TODO
670 ⚪️ ConfigTestCases clean dry dry: TODO
671 ⚪️ ConfigTestCases clean enabled enabled: TODO
672 ⚪️ ConfigTestCases clean ignore-fn ignore-fn: TODO
673 ⚪️ ConfigTestCases clean ignore-hook ignore-hook: TODO
674 ⚪️ ConfigTestCases clean ignore-rx ignore-rx: TODO
675 ⚪️ ConfigTestCases clean link link: TODO
676 ⚪️ ConfigTestCases code-generation harmony-pure-default harmony-pure-default: TODO
677 ⚪️ ConfigTestCases code-generation require-context-id require-context-id: TODO
678 ⚪️ ConfigTestCases code-generation use-strict use-strict: TODO
679 ⚪️ ConfigTestCases compiletime error-not-found error-not-found: TODO
680 ⚪️ ConfigTestCases compiletime exports-presence exports-presence: TODO
681 ⚪️ ConfigTestCases compiletime warn-not-found warn-not-found: TODO
688 ⚪️ ConfigTestCases concatenate-modules import-module import-module: TODO
703 ⚪️ ConfigTestCases concatenate-modules split-chunk-entry-module split-chunk-entry-module: TODO
778 ⚪️ ConfigTestCases contenthash assets assets: TODO
779 ⚪️ ConfigTestCases contenthash include-chunk-id include-chunk-id: TODO
780 ⚪️ ConfigTestCases context-exclusion simple simple: TODO
781 ⚪️ ConfigTestCases context-replacement System.import System.import: TODO
782 ⚪️ ConfigTestCases context-replacement a a: TODO
783 ⚪️ ConfigTestCases context-replacement b b: TODO
784 ⚪️ ConfigTestCases context-replacement c c: TODO
785 ⚪️ ConfigTestCases context-replacement d d: TODO
786 ⚪️ ConfigTestCases context-replacement e e: TODO
787 ⚪️ ConfigTestCases crossorigin set-crossorigin set-crossorigin: TODO
788 ⚪️ ConfigTestCases css basic basic: TODO
789 ⚪️ ConfigTestCases css basic-initial-only basic-initial-only: TODO
790 ⚪️ ConfigTestCases css conflicting-order conflicting-order: TODO
791 ⚪️ ConfigTestCases css css-modules css-modules: TODO
792 ⚪️ ConfigTestCases css css-modules-in-node css-modules-in-node: TODO
793 ⚪️ ConfigTestCases css exports exports: TODO
794 ⚪️ ConfigTestCases css exports-in-node exports-in-node: TODO
795 ⚪️ ConfigTestCases css external external: TODO
796 ⚪️ ConfigTestCases css large large: TODO
797 ⚪️ ConfigTestCases css urls urls: TODO
798 ⚫️ ConfigTestCases custom-hash-function xxhash xxhash: No plan
799 ⚪️ ConfigTestCases custom-modules json-custom json-custom: TODO
800 ⚪️ ConfigTestCases custom-source-type localization localization: TODO
801 ⚪️ ConfigTestCases deep-scope-analysis remove-export remove-export: TODO
802 ⚪️ ConfigTestCases deep-scope-analysis remove-export-scope-hoisting remove-export-scope-hoisting: TODO
803 ⚪️ ConfigTestCases defaulter immutable-config immutable-config: TODO
804 ⚪️ ConfigTestCases delegated simple simple: TODO
805 ⚪️ ConfigTestCases delegated-hash simple simple: TODO
809 ⚪️ ConfigTestCases deprecations chunk-and-module chunk-and-module: TODO
810 ⚪️ ConfigTestCases deprecations chunk-files chunk-files: TODO
811 ⚪️ ConfigTestCases deprecations config config: TODO
812 ⚪️ ConfigTestCases deprecations invalid-dependencies invalid-dependencies: TODO
813 ⚪️ ConfigTestCases deprecations non-unique-hash non-unique-hash: TODO
814 ⚪️ ConfigTestCases devtools harmony-eval harmony-eval: TODO
815 ⚪️ ConfigTestCases devtools harmony-eval-source-map harmony-eval-source-map: TODO
816 ⚪️ ConfigTestCases dll-plugin 0-create-dll 0-create-dll: TODO
817 ⚪️ ConfigTestCases dll-plugin 0-issue-10475 0-issue-10475: TODO
818 ⚪️ ConfigTestCases dll-plugin 1-issue-10475 1-issue-10475: TODO
819 ⚪️ ConfigTestCases dll-plugin 1-use-dll 1-use-dll: TODO
820 ⚪️ ConfigTestCases dll-plugin 2-use-dll-without-scope 2-use-dll-without-scope: TODO
821 ⚪️ ConfigTestCases dll-plugin 3-use-dll-with-hashid 3-use-dll-with-hashid: TODO
822 ⚪️ ConfigTestCases dll-plugin-entry 0-create-dll 0-create-dll: TODO
823 ⚪️ ConfigTestCases dll-plugin-entry 1-use-dll 1-use-dll: TODO
824 ⚪️ ConfigTestCases dll-plugin-entry 2-error-non-entry 2-error-non-entry: TODO
825 ⚪️ ConfigTestCases dll-plugin-format 0-create-dll 0-create-dll: TODO
826 ⚪️ ConfigTestCases dll-plugin-side-effects 0-create-dll 0-create-dll: TODO
827 ⚪️ ConfigTestCases dll-plugin-side-effects 1-use-dll 1-use-dll: TODO
828 ⚪️ ConfigTestCases ecmaVersion 2015 2015: TODO
829 ⚪️ ConfigTestCases ecmaVersion 2020 2020: TODO
830 ⚪️ ConfigTestCases ecmaVersion 5 5: TODO
831 ⚪️ ConfigTestCases ecmaVersion browserslist browserslist: TODO
832 ⚪️ ConfigTestCases ecmaVersion browserslist-config browserslist-config: TODO
833 ⚪️ ConfigTestCases ecmaVersion browserslist-config-env browserslist-config-env: TODO
834 ⚪️ ConfigTestCases ecmaVersion browserslist-missing browserslist-missing: TODO
835 ⚪️ ConfigTestCases ecmaVersion browserslist-query browserslist-query: TODO
836 ⚪️ ConfigTestCases ecmaVersion custom custom: TODO
837 ⚪️ ConfigTestCases emit-asset different-source different-source: TODO
838 ⚪️ ConfigTestCases emit-asset equal-source equal-source: TODO
839 ⚪️ ConfigTestCases entry adding-multiple-entry-points adding-multiple-entry-points: TODO
840 ⚪️ ConfigTestCases entry depend-on-advanced depend-on-advanced: TODO
841 ⚪️ ConfigTestCases entry depend-on-bug depend-on-bug: TODO
842 ⚪️ ConfigTestCases entry depend-on-non-js depend-on-non-js: TODO
843 ⚪️ ConfigTestCases entry depend-on-simple depend-on-simple: TODO
844 ⚪️ ConfigTestCases entry descriptor descriptor: TODO
848 ⚪️ ConfigTestCases entry function function: TODO
849 ⚪️ ConfigTestCases entry function-promise function-promise: TODO
850 ⚪️ ConfigTestCases entry issue-1068 issue-1068: TODO
851 ⚪️ ConfigTestCases entry issue-12562 issue-12562: TODO
856 ⚪️ ConfigTestCases entry issue-8110 issue-8110: TODO
863 ⚪️ ConfigTestCases entry require-entry-point require-entry-point: TODO
864 ⚪️ ConfigTestCases entry single-entry-point single-entry-point: TODO
868 ⚪️ ConfigTestCases entry weird-names weird-names: TODO
869 ⚪️ ConfigTestCases entry weird-names2 weird-names2: TODO
870 ⚪️ ConfigTestCases errors asset-options-validation asset-options-validation: TODO
871 ⚪️ ConfigTestCases errors case-emit case-emit: TODO
872 ⚪️ ConfigTestCases errors depend-on-and-runtime depend-on-and-runtime: TODO
873 ⚪️ ConfigTestCases errors depend-on-error depend-on-error: TODO
874 ⚪️ ConfigTestCases errors entry-not-found entry-not-found: TODO
875 ⚪️ ConfigTestCases errors exception-in-chunk-renderer exception-in-chunk-renderer: TODO
876 ⚪️ ConfigTestCases errors import-missing import-missing: TODO
877 ⚪️ ConfigTestCases errors multi-entry-missing-module multi-entry-missing-module: TODO
878 ⚪️ ConfigTestCases errors self-reexport self-reexport: TODO
879 ⚪️ ConfigTestCases externals async-externals async-externals: TODO
880 ⚪️ ConfigTestCases externals concatenated concatenated: TODO
881 ⚪️ ConfigTestCases externals concatenated-module concatenated-module: TODO
882 ⚪️ ConfigTestCases externals externals-array externals-array: TODO
883 ⚪️ ConfigTestCases externals externals-in-chunk externals-in-chunk: TODO
884 ⚪️ ConfigTestCases externals externals-in-commons-chunk externals-in-commons-chunk: TODO
885 ⚪️ ConfigTestCases externals externals-system externals-system: TODO
886 ⚪️ ConfigTestCases externals externals-system-custom externals-system-custom: TODO
887 ⚪️ ConfigTestCases externals global global: TODO
888 ⚪️ ConfigTestCases externals harmony harmony: TODO
895 ⚪️ ConfigTestCases externals non-umd-externals-umd2 non-umd-externals-umd2: TODO
896 ⚪️ ConfigTestCases externals optional-externals-cjs optional-externals-cjs: TODO
897 ⚪️ ConfigTestCases externals optional-externals-root optional-externals-root: TODO
898 ⚪️ ConfigTestCases externals optional-externals-umd optional-externals-umd: TODO
899 ⚪️ ConfigTestCases externals optional-externals-umd2 optional-externals-umd2: TODO
900 ⚪️ ConfigTestCases externals optional-externals-umd2-mixed optional-externals-umd2-mixed: TODO
904 ⚪️ ConfigTestCases externals resolve resolve: TODO
905 ⚪️ ConfigTestCases externals this this: TODO
906 ⚪️ ConfigTestCases filename-template filename-function filename-function: TODO
907 ⚪️ ConfigTestCases filename-template module-filename-template module-filename-template: TODO
908 ⚪️ ConfigTestCases filename-template script-src-filename script-src-filename: TODO
909 ⚪️ ConfigTestCases filename-template split-chunks-filename split-chunks-filename: TODO
910 ⚪️ ConfigTestCases finish-modules simple simple: TODO
911 ⚪️ ConfigTestCases graph conditional-ensure conditional-ensure: TODO
912 ⚪️ ConfigTestCases graph issue-11770 issue-11770: TODO
913 ⚪️ ConfigTestCases graph issue-11856 issue-11856: TODO
914 ⚪️ ConfigTestCases graph issue-11856.2 issue-11856.2: TODO
915 ⚪️ ConfigTestCases graph issue-11863 issue-11863: TODO
916 ⚪️ ConfigTestCases hash-length deterministic-module-ids deterministic-module-ids: TODO
917 ⚪️ ConfigTestCases hash-length hashed-module-ids hashed-module-ids: TODO
918 ⚪️ ConfigTestCases hash-length output-filename output-filename: TODO
919 ⚪️ ConfigTestCases ignore checkContext checkContext: TODO
920 ⚪️ ConfigTestCases ignore checkResource-one-argument checkResource-one-argument: TODO
921 ⚪️ ConfigTestCases ignore checkResource-two-arguments checkResource-two-arguments: TODO
927 ⚪️ ConfigTestCases ignore multiple-with-externals multiple-with-externals: TODO
928 ⚪️ ConfigTestCases ignore only-resource only-resource: TODO
929 ⚪️ ConfigTestCases ignore only-resource-context only-resource-context: TODO
930 ⚪️ ConfigTestCases ignore resource-and-context resource-and-context: TODO
931 ⚪️ ConfigTestCases ignore resource-and-context-contextmodule resource-and-context-contextmodule: TODO
932 ⚪️ ConfigTestCases inner-graph altaskitButton altaskitButton: TODO
933 ⚪️ ConfigTestCases inner-graph basic basic: TODO
934 ⚪️ ConfigTestCases inner-graph blockScopes blockScopes: TODO
935 ⚪️ ConfigTestCases inner-graph class class: TODO
936 ⚪️ ConfigTestCases inner-graph const const: TODO
937 ⚪️ ConfigTestCases inner-graph defaultArrow defaultArrow: TODO
938 ⚪️ ConfigTestCases inner-graph defaultClass defaultClass: TODO
939 ⚪️ ConfigTestCases inner-graph defaultExpression defaultExpression: TODO
940 ⚪️ ConfigTestCases inner-graph defaultFunction defaultFunction: TODO
941 ⚪️ ConfigTestCases inner-graph defaultFunctionExpression defaultFunctionExpression: TODO
942 ⚪️ ConfigTestCases inner-graph defaultId defaultId: TODO
943 ⚪️ ConfigTestCases inner-graph defaultNamedFunction defaultNamedFunction: TODO
944 ⚪️ ConfigTestCases inner-graph defaultNamedFunctionExpression defaultNamedFunctionExpression: TODO
945 ⚪️ ConfigTestCases inner-graph eval-bailout eval-bailout: TODO
946 ⚪️ ConfigTestCases inner-graph export export: TODO
947 ⚪️ ConfigTestCases inner-graph importAll importAll: TODO
948 ⚪️ ConfigTestCases inner-graph issue-11678 issue-11678: TODO
949 ⚪️ ConfigTestCases inner-graph issue-12669 issue-12669: TODO
950 ⚪️ ConfigTestCases inner-graph issue-12669-mini issue-12669-mini: TODO
951 ⚪️ ConfigTestCases inner-graph localReference localReference: TODO
952 ⚪️ ConfigTestCases inner-graph nested nested: TODO
953 ⚪️ ConfigTestCases inner-graph pure pure: TODO
954 ⚪️ ConfigTestCases inner-graph ramdaIdentical ramdaIdentical: TODO
955 ⚪️ ConfigTestCases inner-graph specifier specifier: TODO
956 ⚪️ ConfigTestCases inner-graph varNotWritten varNotWritten: TODO
957 ⚪️ ConfigTestCases inner-graph varWritten varWritten: TODO
958 ⚪️ ConfigTestCases issues issue-11871-imports-order issue-11871-imports-order: TODO
959 ⚪️ ConfigTestCases issues issue-12924 issue-12924: TODO
964 ⚪️ ConfigTestCases issues issue-14974 issue-14974: TODO
965 ⚪️ ConfigTestCases issues issue-3596 issue-3596: TODO
966 ⚪️ ConfigTestCases issues issue-7470 issue-7470: TODO
969 ⚪️ ConfigTestCases json tree-shaking-default tree-shaking-default: TODO
970 ⚪️ ConfigTestCases layer rules rules: TODO
971 ⚪️ ConfigTestCases library 0-create-library 0-create-library: TODO
972 ⚪️ ConfigTestCases library 1-use-library 1-use-library: TODO
989 ⚪️ ConfigTestCases library invalid-name invalid-name: TODO
1005 🟡 ConfigTestCases loader-import-module css css: #4923
1006 ⚪️ ConfigTestCases loaders #-issue-14755-# #-issue-14755-#: TODO
1010 🔴 ConfigTestCases loaders hot-in-context hot-in-context: blocked by parser hook and ConstPlugin: #4300
1033 ⚪️ ConfigTestCases loaders options options: TODO
1034 🔴 ConfigTestCases loaders pr-14384 pr-14384: Rspack does not export NormalModule and support beforeLoaders from JS side and whether to implemented is tracked here: https://github.com/orgs/web-infra-dev/projects/9
1043 ⚪️ ConfigTestCases managedPaths futureDefaults futureDefaults: TODO
1044 ⚪️ ConfigTestCases mangle mangle-with-object-prop mangle-with-object-prop: TODO
1045 ⚪️ ConfigTestCases module externals externals: TODO
1046 ⚪️ ConfigTestCases module runtime-chunk runtime-chunk: TODO
1047 ⚪️ ConfigTestCases module split-chunks split-chunks: TODO
1048 ⚪️ ConfigTestCases module-name different-issuers-for-same-module different-issuers-for-same-module: TODO
1049 ⚪️ ConfigTestCases no-parse module.exports module.exports: TODO
1050 ⚪️ ConfigTestCases no-parse no-parse-function no-parse-function: TODO
1051 ⚪️ ConfigTestCases node node-prefix node-prefix: TODO
1052 ⚪️ ConfigTestCases optimization chunk chunk: TODO
1062 ⚪️ ConfigTestCases optimization hashed-module-ids hashed-module-ids: TODO
1063 ⚪️ ConfigTestCases optimization minimizer minimizer: TODO
1064 ⚪️ ConfigTestCases optimization named-modules named-modules: TODO
1073 ⚪️ ConfigTestCases optimization runtime-specific-used-exports2 runtime-specific-used-exports2: TODO
1074 ⚪️ ConfigTestCases output charset charset: TODO
1075 ⚪️ ConfigTestCases output function function: TODO
1076 ⚪️ ConfigTestCases output import-meta-name import-meta-name: TODO
1084 ⚪️ ConfigTestCases output publicPath-node publicPath-node: TODO
1085 ⚪️ ConfigTestCases output publicPath-scriptType-module publicPath-scriptType-module: TODO
1086 ⚪️ ConfigTestCases output publicPath-web publicPath-web: TODO
1087 ⚪️ ConfigTestCases output string string: TODO
1088 ⚪️ ConfigTestCases output-module check-defaults check-defaults: TODO
1093 ⚪️ ConfigTestCases parsing context context: TODO
1098 ⚪️ ConfigTestCases parsing harmony-global harmony-global: TODO
1099 ⚪️ ConfigTestCases parsing harmony-this harmony-this: TODO
1100 ⚪️ ConfigTestCases parsing harmony-this-concat harmony-this-concat: TODO
1107 ⚪️ ConfigTestCases parsing issue-14545 issue-14545: TODO
1108 ⚪️ ConfigTestCases parsing issue-14720 issue-14720: TODO
1109 ⚪️ ConfigTestCases parsing issue-2942 issue-2942: TODO
1113 ⚪️ ConfigTestCases parsing issue-4857 issue-4857: TODO
1114 ⚪️ ConfigTestCases parsing issue-5624 issue-5624: TODO
1115 ⚪️ ConfigTestCases parsing issue-8293 issue-8293: TODO
1116 ⚪️ ConfigTestCases parsing issue-9042 issue-9042: TODO
1127 ⚪️ ConfigTestCases parsing optional optional: TODO
1128 ⚪️ ConfigTestCases parsing optional-chaining optional-chaining: TODO
1129 ⚪️ ConfigTestCases parsing relative-filedirname relative-filedirname: TODO
1130 ⚪️ ConfigTestCases parsing require-ignore require-ignore: TODO
1134 ⚪️ ConfigTestCases parsing requirejs requirejs: TODO
1135 ⚪️ ConfigTestCases parsing system.import system.import: TODO
1136 ⚪️ ConfigTestCases performance many-async-imports many-async-imports: TODO
1137 ⚪️ ConfigTestCases performance many-exports many-exports: TODO
1142 🔴 ConfigTestCases plugins banner-plugin-hashing banner-plugin-hashing: Lacking support of chunkhash
1143 ⚪️ ConfigTestCases plugins define-plugin define-plugin: TODO
1144 ⚪️ ConfigTestCases plugins define-plugin-bigint define-plugin-bigint: TODO
1183 ⚪️ ConfigTestCases plugins lib-manifest-plugin lib-manifest-plugin: TODO
1188 ⚪️ ConfigTestCases plugins min-chunk-size min-chunk-size: TODO
1189 ⚪️ ConfigTestCases plugins mini-css-extract-plugin mini-css-extract-plugin: TODO
1190 ⚪️ ConfigTestCases plugins profiling-plugin profiling-plugin: TODO
1191 ⚪️ ConfigTestCases plugins progress-plugin progress-plugin: TODO
1192 ⚪️ ConfigTestCases plugins provide-plugin provide-plugin: TODO
1193 ⚪️ ConfigTestCases plugins source-map-dev-tool-plugin source-map-dev-tool-plugin: TODO
1194 ⚪️ ConfigTestCases plugins source-map-dev-tool-pluginappend source-map-dev-tool-pluginappend: TODO
1195 ⚪️ ConfigTestCases plugins terser-plugin terser-plugin: TODO
1196 ⚪️ ConfigTestCases process-assets html-plugin html-plugin: TODO
1197 ⚪️ ConfigTestCases race-conditions load-module load-module: TODO
1198 ⚪️ ConfigTestCases rebuild finishModules finishModules: TODO
1199 ⚪️ ConfigTestCases rebuild rebuildWithNewDependencies rebuildWithNewDependencies: TODO
1200 ⚪️ ConfigTestCases records issue-295 issue-295: TODO
1201 ⚪️ ConfigTestCases records issue-2991 issue-2991: TODO
1202 ⚪️ ConfigTestCases records issue-7339 issue-7339: TODO
1203 ⚪️ ConfigTestCases records issue-7492 issue-7492: TODO
1204 ⚪️ ConfigTestCases records stable-sort stable-sort: TODO
1205 ⚪️ ConfigTestCases require module-require module-require: TODO
1206 ⚪️ ConfigTestCases resolve context-resolve-with-ignore context-resolve-with-ignore: TODO
1207 ⚪️ ConfigTestCases resolve empty-context-module empty-context-module: TODO
1213 ⚪️ ConfigTestCases resolve issue-11335-context-module issue-11335-context-module: TODO
1214 ⚪️ ConfigTestCases resolve issue-15580 issue-15580: TODO
1218 ⚪️ ConfigTestCases resolve only-module only-module: TODO
1219 ⚪️ ConfigTestCases resolve-merging override override: TODO
1223 ⚪️ ConfigTestCases resolving prefer-absolute prefer-absolute: TODO
1224 ⚪️ ConfigTestCases resolving prefer-root prefer-root: TODO
1225 ⚪️ ConfigTestCases rule-set chaining chaining: TODO
1226 ⚪️ ConfigTestCases rule-set compiler compiler: TODO
1227 ⚪️ ConfigTestCases rule-set custom custom: TODO
1228 ⚪️ ConfigTestCases rule-set query query: TODO
1229 ⚪️ ConfigTestCases rule-set resolve-options resolve-options: TODO
1230 ⚪️ ConfigTestCases rule-set simple simple: TODO
1231 ⚪️ ConfigTestCases rule-set simple-use-array-fn simple-use-array-fn: TODO
1232 ⚪️ ConfigTestCases rule-set simple-use-fn-array simple-use-fn-array: TODO
1233 ⚪️ ConfigTestCases rule-set undefined-values undefined-values: TODO
1234 ⚪️ ConfigTestCases runtime entries-in-runtime entries-in-runtime: TODO
1235 ⚪️ ConfigTestCases runtime invalid-esm-export invalid-esm-export: TODO
1236 ⚪️ ConfigTestCases runtime no-runtime-per-entry no-runtime-per-entry: TODO
1237 ⚪️ ConfigTestCases runtime opt-in-finally opt-in-finally: TODO
1241 ⚪️ ConfigTestCases scope-hoisting create-dll-plugin create-dll-plugin: TODO
1242 ⚪️ ConfigTestCases scope-hoisting dll-plugin dll-plugin: TODO
1263 ⚪️ ConfigTestCases sharing consume-module-ignore-warnings consume-module-ignore-warnings: TODO
1267 ⚪️ ConfigTestCases sharing consume-multiple-versions-ignore-warnings consume-multiple-versions-ignore-warnings: TODO
1300 ⚪️ ConfigTestCases side-effects issue-13063 issue-13063: TODO
1308 ⚪️ ConfigTestCases side-effects type-reexports type-reexports: TODO
1309 ⚪️ ConfigTestCases side-effects url url: TODO
1322 ⚪️ ConfigTestCases source-map array-as-output-library array-as-output-library: TODO
1323 ⚪️ ConfigTestCases source-map array-as-output-library-in-object-output array-as-output-library-in-object-output: TODO
1324 ⚪️ ConfigTestCases source-map context-module-source-path context-module-source-path: TODO
1325 ⚪️ ConfigTestCases source-map default-filename-extensions-css default-filename-extensions-css: TODO
1326 ⚪️ ConfigTestCases source-map default-filename-extensions-js default-filename-extensions-js: TODO
1327 ⚪️ ConfigTestCases source-map default-filename-extensions-mjs default-filename-extensions-mjs: TODO
1332 ⚪️ ConfigTestCases source-map exclude-modules-source-map exclude-modules-source-map: TODO
1333 ⚪️ ConfigTestCases source-map module-names module-names: TODO
1340 ⚪️ ConfigTestCases source-map namespace-source-path.library namespace-source-path.library: TODO
1341 ⚪️ ConfigTestCases source-map no-source-map no-source-map: TODO
1345 ⚪️ ConfigTestCases source-map object-as-output-library object-as-output-library: TODO
1346 🟡 ConfigTestCases source-map relative-source-map-path relative-source-map-path: #4304
1347 🔴 ConfigTestCases source-map relative-source-maps-by-loader relative-source-maps-by-loader: #5393
1348 ⚪️ ConfigTestCases source-map resource-path resource-path: TODO
1352 ⚪️ ConfigTestCases source-map source-map-with-profiling-plugin source-map-with-profiling-plugin: TODO
1353 ⚪️ ConfigTestCases source-map sources-array-production sources-array-production: TODO
1360 🔴 ConfigTestCases split-chunks chunk-filename-delimiter-default chunk-filename-delimiter-default: splitted chunk ids should be the same as webpack #4334
1365 🔴 ConfigTestCases split-chunks custom-filename-function custom-filename-function: not support function type of splitChunks #4333
1370 🔴 ConfigTestCases split-chunks entry-point-error entry-point-error: should emit error if entry point and splitted chunk have the same name #4332
1377 🔴 ConfigTestCases split-chunks issue-11513 issue-11513: should support object type minSize #4331
1393 🔴 ConfigTestCases split-chunks move-to-entrypoint move-to-entrypoint: jest node env blocks
1394 🔴 ConfigTestCases split-chunks no-options no-options: no js splitChunks plugin
1398 🟡 ConfigTestCases split-chunks runtime-chunk runtime-chunk: not have the same name for splitted chunk with webpack #4334
1399 🔴 ConfigTestCases split-chunks runtime-chunk-async-node runtime-chunk-async-node: hang by unknown reasons #4342
1403 🔴 ConfigTestCases split-chunks runtime-chunk-node runtime-chunk-node: hang by unknown reasons #4342
1404 🔴 ConfigTestCases split-chunks runtime-chunk-node-13130 runtime-chunk-node-13130: hang by unknown reasons #4342
1415 🔴 ConfigTestCases split-chunks-common hot hot: block: require.main #3562
1428 🔴 ConfigTestCases split-chunks-common library library: block: require.ensure #4304
1446 ⚪️ ConfigTestCases target amd-container-named amd-container-named: TODO
1447 ⚪️ ConfigTestCases target amd-container-require amd-container-require: TODO
1448 ⚪️ ConfigTestCases target amd-container-unnamed amd-container-unnamed: TODO
1449 ⚪️ ConfigTestCases target amd-named amd-named: TODO
1450 ⚪️ ConfigTestCases target amd-require amd-require: TODO
1451 ⚪️ ConfigTestCases target amd-unnamed amd-unnamed: TODO
1459 ⚪️ ConfigTestCases target node-dynamic-import node-dynamic-import: TODO
1460 ⚪️ ConfigTestCases target strict-mode-global strict-mode-global: TODO
1470 ⚪️ ConfigTestCases target system-named-assets-path system-named-assets-path: TODO
1474 ⚪️ ConfigTestCases target umd-auxiliary-comments-object umd-auxiliary-comments-object: TODO
1475 ⚪️ ConfigTestCases target umd-auxiliary-comments-string umd-auxiliary-comments-string: TODO
1476 ⚪️ ConfigTestCases target umd-named-define umd-named-define: TODO
1477 🔴 ConfigTestCases trusted-types custom-policy-name custom-policy-name: #5395
1478 🔴 ConfigTestCases trusted-types default-policy-name default-policy-name: #5395
1479 ⚪️ ConfigTestCases trusted-types devtool-eval devtool-eval: TODO
1480 🔴 ConfigTestCases trusted-types no-policy-name no-policy-name: #5395
1481 🔴 ConfigTestCases trusted-types no-trusted-types no-trusted-types: #5395
1482 ⚪️ ConfigTestCases trusted-types web-worker web-worker: TODO
1483 ⚪️ ConfigTestCases types filesystems filesystems: TODO
1487 ⚪️ ConfigTestCases utils lazy-set lazy-set: TODO
1488 ⚪️ ConfigTestCases wasm export-imported-global export-imported-global: TODO
1489 ⚪️ ConfigTestCases wasm identical identical: TODO
1490 ⚪️ ConfigTestCases wasm import-wasm-wasm import-wasm-wasm: TODO
1491 ⚪️ ConfigTestCases wasm missing-wasm-experiment missing-wasm-experiment: TODO
1492 ⚪️ ConfigTestCases wasm wasm-in-initial-chunk-error wasm-in-initial-chunk-error: TODO
1493 ⚪️ ConfigTestCases web attach-existing attach-existing: TODO
1494 ⚪️ ConfigTestCases web node-source node-source: TODO
1495 ⚪️ ConfigTestCases web node-source-future-defaults node-source-future-defaults: TODO
1496 ⚪️ ConfigTestCases web node-source-global node-source-global: TODO
1497 ⚪️ ConfigTestCases web non-js-chunks-entrypoint non-js-chunks-entrypoint: TODO
1498 ⚪️ ConfigTestCases web non-js-chunks-entrypoint-runtime-chunk non-js-chunks-entrypoint-runtime-chunk: TODO
1502 ⚪️ ConfigTestCases web preexecuted-chunk preexecuted-chunk: TODO
1509 ⚪️ ConfigTestCases web retry-failed-import retry-failed-import: TODO
1510 ⚪️ ConfigTestCases web unique-jsonp unique-jsonp: TODO
1511 🔴 ConfigTestCases worker custom-worker custom-worker: #3656
1512 🔴 ConfigTestCases worker node-worker node-worker: needs compile time evaluateExpression
1513 🔴 ConfigTestCases worker node-worker-hmr node-worker-hmr: HMR plugin
1531 ⚪️ WatchTestCases add-defines: TODO
1532 ⚪️ WatchTestCases asset-concat: TODO
1533 ⚪️ WatchTestCases asset-modules: TODO
1534 ⚪️ WatchTestCases change-dep-while-detatched: TODO
1535 ⚪️ WatchTestCases changing-module-id: TODO
1536 ⚪️ WatchTestCases child-compilation-cache: TODO
1537 ⚪️ WatchTestCases emit-when-clean: TODO
1538 ⚪️ WatchTestCases emit-without-clean: TODO
1539 ⚪️ WatchTestCases immutable: TODO
1540 ⚪️ WatchTestCases loader-import-module: TODO
1541 ⚪️ WatchTestCases managedPath: TODO
1542 ⚪️ WatchTestCases new-split-chunk-entry-node: TODO
1543 ⚪️ WatchTestCases new-split-chunk-entry-web: TODO
1544 ⚪️ WatchTestCases reexport-mangle: TODO
1545 ⚪️ WatchTestCases unsafe-cache: TODO
1546 ⚪️ WatchTestCases unsafe-cache-duplicates: TODO
1547 ⚪️ WatchTestCases unsafe-cache-managed-paths: TODO
1548 ⚪️ WatchTestCases delete-in-context: TODO
1549 ⚪️ WatchTestCases loader-context-dep: TODO
1550 ⚪️ WatchTestCases issue-8766: TODO
1551 ⚪️ WatchTestCases issue-8766-with-cache: TODO
1552 ⚪️ WatchTestCases caching-harmony: TODO
1553 ⚪️ WatchTestCases reexport-chain: TODO
1554 ⚪️ WatchTestCases switching-harmony: TODO
1555 ⚪️ WatchTestCases automatic-prefetch-plugin: TODO
1556 ⚪️ WatchTestCases automatic-prefetch-plugin-9485: TODO
1557 ⚪️ WatchTestCases define-plugin: TODO
1558 ⚪️ WatchTestCases dll-reference-plugin: TODO
1559 ⚪️ WatchTestCases mini-css-extract-plugin: TODO
1560 ⚪️ WatchTestCases module-concatenation-plugin: TODO
1561 ⚪️ WatchTestCases profiling-plugin: TODO
1562 ⚪️ WatchTestCases watch-ignore-plugin: TODO
1563 ⚪️ WatchTestCases missing-module: TODO
1564 ⚪️ WatchTestCases parse-failed-esm: TODO
1565 ⚪️ WatchTestCases in-loader: TODO
1566 ⚪️ WatchTestCases dynamic-import: TODO
1567 ⚪️ WatchTestCases static-import: TODO
1568 ⚪️ WatchTestCases caching-inner-source: TODO
1569 ⚪️ WatchTestCases provide-unsafe-cache: TODO
1570 ⚪️ WatchTestCases issue-7400: TODO
1571 ⚪️ WatchTestCases unable-to-snapshot: TODO
1572 ⚪️ WatchTestCases warnings-contribute-to-hash: TODO
1573 ⚪️ WatchTestCases caching: TODO
1610 🔴 TestCases normal amd define-needs-module: #4313
1611 🔴 TestCases normal amd namedModules: #4313
1612 🔴 TestCases normal amd namedModulesConstArrayDep: #4313
1649 🔴 TestCases normal chunks context: #4304
1650 🔴 TestCases normal chunks inline-options: #4306
1651 🔴 TestCases normal chunks named-chunks: #4304
1652 🔴 TestCases normal chunks nested-in-empty: #4304
1653 🔴 TestCases normal chunks parsing: #4304
1654 🔴 TestCases normal chunks runtime: #4304
1655 🔴 TestCases normal chunks var-inject-error-handler: #4304
1656 🟡 TestCases normal chunks weak-dependencies: #2787
1657 🔴 TestCases normal chunks weak-dependencies-context: #4315
1698 🔴 TestCases normal cjs-interop non-existing-export: #4323
1699 🟡 TestCases normal cjs-tree-shaking bailouts: #4313
1700 🟡 TestCases normal cjs-tree-shaking mutate: #4323
1701 🔴 TestCases normal cjs-tree-shaking reexports: #4424
1779 🔴 TestCases normal compile deduplication-bundle-loader: #4304
1780 🔴 TestCases normal compile error-hide-stack: #4326
1793 🔴 TestCases normal context import-meta-webpack-context: #4305
1794 🔴 TestCases normal context issue-10969: #4329
1795 🔴 TestCases normal context issue-5750: #4328
1840 🟡 TestCases normal errors crash-missing-import: #4348
1841 🟡 TestCases normal errors harmony-import-missing: #4348
1842 🟡 TestCases normal errors harmony-import-missing2: #4348
1843 🔴 TestCases normal errors load-module-cycle: #3738
1844 🔴 TestCases normal errors load-module-cycle-multiple: #3738
1845 🔴 TestCases normal errors load-module-error: #3738
1846 🟡 TestCases normal errors loader-error-warning: #4349
1847 🟡 TestCases normal errors mjs-non-fully-specified: #4348
1848 🟡 TestCases normal errors module-request: #4348
1857 🟡 TestCases normal esm import-meta: #4350
1925 🟡 TestCases normal json default-default-with-concatenation: #3823
1926 🔴 TestCases normal json import-assertions-type-json: #4358
1927 🔴 TestCases normal json import-by-name: #4323
1928 🟡 TestCases normal json import-by-name-with-concatenation: #3823, #4323
1929 🟡 TestCases normal json import-with-default-with-concatenation: #3823
1930 🟡 TestCases normal json reexport: #4323
1956 🔴 TestCases normal large big-assets: #3180
1957 ⚪️ TestCases normal large many-replacements: TODO
1958 🔴 TestCases normal loaders import-module: #4398
1959 🔴 TestCases normal loaders issue-10725: blocked by this.loadModule #3738
1960 🔴 TestCases normal loaders issue-2299: blocked by this.loadModule #3738
1961 🔴 TestCases normal loaders issue-4959: blocked by this.loadModule #3738
1962 🔴 TestCases normal loaders no-string: blocked by #3459
1963 🔴 TestCases normal loaders resolve: #3180
1964 🔴 TestCases normal loaders utils: #4397
2018 🟡 TestCases normal mjs non-enumerable: #4323
2019 🟡 TestCases normal mjs type-module: #3544, #5197
2065 🔴 TestCases normal nonce set-nonce: #4401
2066 🔴 TestCases normal optimize side-effects-reexport-start-unknown: new tree-shaking re-implementation
2126 🔴 TestCases normal parsing amd-rename: #4313
2127 🟡 TestCases normal parsing chunks: #4304
2128 🟡 TestCases normal parsing complex-require: #4304, #4313
2129 🔴 TestCases normal parsing context: #3346
2130 🔴 TestCases normal parsing declared-api: #4313
2131 🔴 TestCases normal parsing es6.nominimize: #4304
2132 🔴 TestCases normal parsing evaluate: #4424
2133 🔴 TestCases normal parsing evaluate-nullish: #4424
2134 🔴 TestCases normal parsing extract-amd: #4313
2135 🔴 TestCases normal parsing extract-amd.nominimize: #4313
2136 🔴 TestCases normal parsing extract-require: #4424
2137 🔴 TestCases normal parsing harmony-deep-exports: #4426
2138 🔴 TestCases normal parsing harmony-duplicate-export: #4323
2139 🔴 TestCases normal parsing harmony-export-import-specifier: #4426
2140 🔴 TestCases normal parsing harmony-export-precedence: #4323
2141 🔴 TestCases normal parsing harmony-info: #4323
2142 🔴 TestCases normal parsing harmony-injecting-order: #4313
2143 🔴 TestCases normal parsing harmony-reexport: new treeshaking re-implementation
2144 🔴 TestCases normal parsing harmony-star-conflict: #4118, #4323
2145 🔴 TestCases normal parsing issue-2084: #4313
2146 🔴 TestCases normal parsing issue-2600: #4348
2147 🔴 TestCases normal parsing issue-2641: #4313
2148 ⚪️ TestCases normal parsing issue-3252: TODO
2149 ⚪️ TestCases normal parsing issue-3273: TODO
2150 🔴 TestCases normal parsing issue-345: #4313
2151 🔴 TestCases normal parsing issue-387: #4313
2152 🔴 TestCases normal parsing issue-4596: #4424
2153 🔴 TestCases normal parsing issue-4940: #4313
2154 🔴 TestCases normal parsing issue-627: #4429
2155 🔴 TestCases normal parsing issue-758: #4313, #4304
2156 🔴 TestCases normal parsing issue-7778: #4450
2157 🔴 TestCases normal parsing local-modules: #4313
2158 🔴 TestCases normal parsing missing-export-warning-nested: #4323
2159 🔴 TestCases normal parsing nullish-coalescing: #4300
2160 🔴 TestCases normal parsing precreated-ast: #4442
2161 🔴 TestCases normal parsing renaming: #4313, #3346
2162 🔴 TestCases normal parsing resolve-weak-context: #4315
2163 🔴 TestCases normal parsing strict-mode: #4313
2164 🔴 TestCases normal parsing typeof: #4424
2165 🔴 TestCases normal parsing unsupported-amd: #4313
2569 🔴 TestCases normal resolving commomjs-local-module: #4313
2570 🔴 TestCases normal resolving context: #4397
2571 🔴 TestCases normal resolving data-uri: #4445
2572 🔴 TestCases normal resolving issue-2986: #4348
2602 🔴 TestCases normal runtime chunk-callback-order: #4313
2603 🔴 TestCases normal runtime error-handling: #4348
2604 🔴 TestCases normal runtime issue-15518: #4306
2605 🔴 TestCases normal runtime missing-module-exception: #4348
2606 🔴 TestCases normal runtime missing-module-syntax-error: #4348
2607 🔴 TestCases normal runtime module-caching: #4304
2624 ⚪️ TestCases normal scope-hoisting circular-root-export: TODO
2625 🟡 TestCases normal scope-hoisting json-reexport-6700: #4323
2626 ⚪️ TestCases normal scope-hoisting renaming-shorthand-5027: TODO
2801 ⚪️ TestCases normal side-effects dynamic-reexports: TODO
2838 ⚪️ TestCases normal wasm v128: TODO
2935 🔴 TestCases hot amd define-needs-module: #4313
2936 🔴 TestCases hot amd namedModules: #4313
2937 🔴 TestCases hot amd namedModulesConstArrayDep: #4313
2974 🔴 TestCases hot chunks context: #4304
2975 🔴 TestCases hot chunks inline-options: #4306
2976 🔴 TestCases hot chunks named-chunks: #4304
2977 🔴 TestCases hot chunks nested-in-empty: #4304
2978 🔴 TestCases hot chunks parsing: #4304
2979 🔴 TestCases hot chunks runtime: #4304
2980 🔴 TestCases hot chunks var-inject-error-handler: #4304
2981 🟡 TestCases hot chunks weak-dependencies: #2787
2982 🔴 TestCases hot chunks weak-dependencies-context: #4315
3023 🔴 TestCases hot cjs-interop non-existing-export: #4323
3024 🟡 TestCases hot cjs-tree-shaking bailouts: #4313
3025 🟡 TestCases hot cjs-tree-shaking mutate: #4323
3026 🔴 TestCases hot cjs-tree-shaking reexports: #4424
3104 🔴 TestCases hot compile deduplication-bundle-loader: #4304
3105 🔴 TestCases hot compile error-hide-stack: #4326
3118 🔴 TestCases hot context import-meta-webpack-context: #4305
3119 🔴 TestCases hot context issue-10969: #4329
3120 🔴 TestCases hot context issue-5750: #4328
3165 🟡 TestCases hot errors crash-missing-import: #4348
3166 🟡 TestCases hot errors harmony-import-missing: #4348
3167 🟡 TestCases hot errors harmony-import-mis...[Comment body truncated]

@h-a-n-a h-a-n-a force-pushed the feat/new-tsfn branch 9 times, most recently from fc1718f to e48663c Compare March 8, 2024 21:37
@h-a-n-a
Copy link
Collaborator Author

h-a-n-a commented Mar 12, 2024

Leaving package change until NAPI released a new version...

@h-a-n-a h-a-n-a marked this pull request as ready for review March 12, 2024 04:40
@h-a-n-a h-a-n-a requested a review from hardfist as a code owner March 12, 2024 04:40
@h-a-n-a h-a-n-a merged commit da56c4f into main Mar 12, 2024
35 checks passed
@h-a-n-a h-a-n-a deleted the feat/new-tsfn branch March 12, 2024 04:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants