(stderr)
| 376 | // webpack >= 5.110 strips types through `module.stripTypeScriptTypes`, which |
| 377 | // Node.js flags as experimental — upstream noise the CLI does not control. |
| 378 | const withoutExperimentalWarnings = (stderr) => |
| 379 | typeof stderr === "string" ? stderr.replaceAll(EXPERIMENTAL_WARNING_RE, "") : stderr; |
| 380 | |
| 381 | const uniqueDirectoryForTest = async () => { |
| 382 | const result = path.resolve(path.resolve(__dirname, "../create-webpack-app-testing"), uuid()); |
nothing calls this directly
no outgoing calls
no test coverage detected