Gregory Jacobs
Gregory Jacobs
I would personally say that the use of verifyNoMoreInteractions() is definitely situational. I don't often use it myself, but I have found a few cases where I do want to...
Hey, just wanted to thank you for this plugin @mariocasciaro. I was looking for a while to figure out how to avoid re-reading files from disk to perform multiple operations...
+1 to this Jing!
@malled Jing and I work for a financial firm so it's a bit of a process to open source a piece of software developed internally. Hopefully the process won't be...
So we're actually doing this in our project by caching the contents of `common/temp/pnpm-store`. It _somewhat_ works in that pnpm will reuse most of the cached dependencies, but still somehow...
Btw, it might be nice for Rush to have a CLI / API to collect, and later restore, the cached dependencies (which should work regardless of package manager) And as...
> When PNPM installs Rush's common/temp/*.tgz tarballs, it reports that as "downloading" even though no actual network activity is involved. And they are not cached, because PNPM needs to decompress...
Hey @yadue, I mentioned in #377 but should mention it here too: would you like to take a stab at URL-encoding the RTLO chars rather than rejecting the match? This...
Yes, this is definitely an issue when using relative html/css paths in components. For instance, my component looks like this: ``` ts // app/my-component/my.component.ts @Component( { selector: 'my-component', moduleId: __moduleName,...