Results 14 issues of Alex

See #18 for context and the list of commands to fix

After migrating to `mikro-orm` v5 (from `^4.5.9`), my integration tests are suddenly failing with the following error: ``` ValidationError: You cannot call em.flush() from inside lifecycle hook handlers at Function.cannotCommit...

To reproduce: 1. Create a table with a `date` column (for example, `"date_of_birth" date not null`) 2. Make an insert (I'm using `mikro-orm` and passing in `"1983-09-12"`) 3. Select the...

enhancement
good first issue

I ran into a TS error with the following code: ```ts import { Volume } from 'memfs' const vol = Volume.fromJSON({}) // works const getData = (someVol: Volume) => {}...

I'm running into an issue whereby if I change a single integer in a file, `git.status()` reports `"unmodified"` when it should be `"*modified"`. Here is a minimal repro: ```json 0...

bug
mystery bug
released

I suppose this also applies to `http/node` but I specifically ran into this limitation with `http/web`. It's possible to customize request headers in functions like [`clone`](https://isomorphic-git.org/docs/en/clone). However, it is _not_...

good first issue

Currently, if you import `moment-holiday` and build your project with Webpack, `moment` does not get properly resolved. As such, when you run the build, it will throw at runtime with...

The package cannot be imported in a Webpack setup: `import moment from 'moment-holiday` yields `Error: Cannot find module "."`. A `require` calls does not succeed either. Could you add support...

When bundled for browsers, this modules adds over **170 KB** in bundle size via `js-yaml` (38 KB) and its dependency `esprima` (130 KB). You can verify the estimated size on...

The author mentions that this wrapper class would be a bad practice in an OO design. I assume that this is because of the nature of the singleton pattern, which...