Edward Ezekiel

Results 7 comments of Edward Ezekiel

I really like this idea. A few thoughts that come to mind: - This wouldn't be limited to NgRx derived state, right? Could you use it for any dictionary of...

> Hi @edezekiel, > > I'm glad you like it. :) > > > * This wouldn't be limited to NgRx derived state, right? Could you use it for any...

Is this issue still open? PR #761 appears to address the issue's description, but I see it's using Angular v12. I'm interested in creating a sandbox using v16/standalone components if...

Ok great! And yes that's an awesome talk. I'll incorporate some ideas from that talk in the sandbox example.

I'm also running into this issue. My workaround is to install the `rollup-plugin-copy` npm package. Then, I modify the `vite.config.ts` file so that it copies the package.json into the dist...

I had this issue as well and used this approach: ```typescript ngOnInit() { combineLatest({ statusChanges: this._form.statusChanges, manualStatusCheck: interval(1000), }) .pipe(takeUntil(this._destroy$)) .subscribe(({ statusChanges }) => { if (statusChanges === 'PENDING' &&...

It's possible to get the oclif pack command to work with windows by installing GNU tar. This tar package has the --force-local flag. In contrast, the default tar tool installed...