Alexander von Weiss
Alexander von Weiss
We don't use this package, but we use jest & angular and maybe you are interested. We replaced ts-jest with [@swc-node/jest](https://yarnpkg.com/package/@swc-node/jest). Cold cache `jest` went from 60s to 7s. [swc](https://swc-project.github.io/)...
### Which @angular/* package(s) are relevant/releated to the feature request? core, platform-browser-dynamic ### Description The introduction of NoopNgZone a few years ago was awesome ❤️ . But it was never...
Consider these 3 files: ```scss # a.scss @import './b.scss' # b.scss @import './c.scss' # c.scss .foo { color: $unknownVariable } ``` Bundling `a.scss` would roughly throw this exception: ``` Exception...
This allows plugins that are very broadly applied to user code, to ignore files and folders it knows not to touch, like `node_modules`, static files or shared folders. As the...
As the angular-cli right now fully commits to esbuild, the `onResolve` hook reveals itself as a pretty stark performance hinderance to the otherwise astonishing speed of esbuild. In my mind...
### Command serve ### Is this a regression? - [x] Kinda, as the `externalPackagesPlugin` was just added via https://github.com/angular/angular-cli/pull/26923 ### The previous version in which this bug was not present...
### Command serve (esbuild application builder) ### Is this a regression? I'm pretty sure not a recent regression. This behavior was also lately in the webpack build ### Description The...
If you use concurrently like: ```bash node_modules/.bin/concurrently 'node foo.js 0' 'node foo.js 1' --kill-others --restart-tries 2 ``` ```javascript // foo.js - test script, `node foo.js 0` dies after 100ms, `node...