matzkoh / prettier-plugin-packagejson

Prettier plugin for package.json
MIT License
316 stars 10 forks source link

sorting of `dependenciesMeta` is incompatible with yarn v3 #100

Closed viceice closed 1 year ago

viceice commented 1 year ago

prettier format

"dependenciesMeta": {
    "bats-assert@2.0.0": {
      "unplugged": true
    },
    "bats-support@0.3.0": {
      "unplugged": true
    },
    "bats@1.10.0": {
      "unplugged": true
    }
  },

yarn format

  "dependenciesMeta": {
    "bats@1.10.0": {
      "unplugged": true
    },
    "bats-assert@2.0.0": {
      "unplugged": true
    },
    "bats-support@0.3.0": {
      "unplugged": true
    }
matzkoh commented 1 year ago

Thank you for the information. We are using sort-package-json as it is, and we do not intend to make any changes or additions to its functionality.

viceice commented 1 year ago

thanks, opened an issue upstream