aws / language-servers

AWS related Language Servers
Apache License 2.0
19 stars 18 forks source link

Allow upgrading runtime packages within 0.x.x #261

Closed imykhai closed 3 months ago

imykhai commented 3 months ago

Problem

In npm “^0.0.1” can be resolved only to “0.0.1", not “0.0.2” or “0.1.1". This is because npm considers a major version “the leftmost non zero digit”. So, “0.0.2" is a major version change. https://docs.npmjs.com/cli/v6/using-npm/semver#caret-ranges-123-025-004

Solution

Changed dependency to 0.x.x

License

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.