Denis Malinochkin
Denis Malinochkin
JFYI: version in the `master` branch is not released and does not ready for users :)
Hello, @errorx666, Very cool idea!
Hmm. By default, the package returns only files. Literally just files: https://github.com/mrmlnc/fast-glob/blob/da648078ae87bce81fcd42e64d5b2b1360c47b09/src/providers/filters/entry.ts#L50-L52 Other solutions ([glob](https://www.npmjs.com/package/glob), [wcmatch](https://facelessuser.github.io/wcmatch/)) work differently. They include everything in the results, including sockets, with the option to...
I have same issue with a clean installation (latest version of this package and Rollup). My Gulp task: ``` js function task() { const rollupOptions = { entry: './app/scripts/scripts.js', plugins:...
@eventualbuddha, Yes, I deleted the directory and installed all the dependencies again. ``` shell $ npm cache clean all $ rimraf .tmp node_modules bower_components build $ npm i ``` My...
Unfortunately, I don't know a better fix than the next one: ```js // https://github.com/gulpjs/glob-parent/blob/3a14ff5125d9fa9614dc214532327711fa6bbd93/index.js#L32 // remove path parts that are globby do { if (isWin32 && !str.includes('\\')) { str =...
This issue is not entirely belongs to #9500. Yes, in the current insider build Emmet will work with this extension (HTML syntax in `.vue` files). But this issue refers to...
This issue has been fixed in version `3.0.3`.
I merged the changes proposed in #47 and made additional changes (#58) to run on all supported versions node.js.
The TypeScript repository has many useful wiki documents, including [one on performance tracing](https://github.com/microsoft/TypeScript/wiki/Performance-Tracing). I too started noticing performance issues after upgrading to MikroORM 6. They were clearly visible in the...