davestewart / alias-hq

The end-to-end solution for configuring, refactoring, maintaining and using path aliases
https://davestewart.co.uk/projects/open-source/alias-hq/
MIT License
330 stars 11 forks source link

Deprecated packages in 5.4.0 #52

Closed objectkit closed 1 year ago

objectkit commented 2 years ago

The following warnings are issued when I install a working project that uses alias-hq@5.4.0 :

npm WARN deprecated source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated
npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated

Investigating the source of these dependencies shows this:

npm list source-map-url@0.4.1 urix@0.1.0 resolve-url@0.2.1
ts-template@ /Users/Invented/Path/To/Project
├─┬ alias-hq@5.4.0
│ └─┬ jscodeshift@0.10.0
│   └─┬ micromatch@3.1.10
│     └─┬ snapdragon@0.8.2
│       └─┬ source-map-resolve@0.5.3
│         ├── resolve-url@0.2.1
│         ├── source-map-url@0.4.1
│         └── urix@0.1.0

I believe updating updating alias-hq dependency jscodeshift from 0.10.0 to 0.13.0 will solve the import of deprecated packages but I leave that your judgement and choice to update. Many thanks for this great package!

davestewart commented 2 years ago

Thanks! Will take a look.

objectkit commented 2 years ago

Thats great news, very much appreciated!