Open nfantone opened 4 years ago
Wanted to point out that, seeing how little activity there seems to be in this repository, users can workaround this issue by locking the globby
version in their own projects.
"resolutions": {
"import-sort-cli/globby": "11.0.1"
}
This might have other unintended effects (as import-sort-cli
requires ^9.0.0
), but so far it seems to be working fine for me.
Thanks @nfantone and npm solution matched the version from another use on my package tree.
"overrides": { "import-sort-cli": { "globby": "11.1.0" } },
File paths passed to
import-sort-cli
containing glob special characters -such as[
,(
,]
and)
- would not work with currently setglobby
dependency even though they are valid.Upgrading
globby
to11.0.1
resolves the issue. However, the following was also addressed:globby
types for latest release required a newertypescript
version.import-sort
would not build due to TS errors onpackages/import-sort-parser-babylon/src/index.ts
.eslint
config declares@typescript-eslint/parser
as parser but the module was never installed as a dependency, forcinglint-staged
scripts to fail.