Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 3.57 KB

CHANGELOG.md

File metadata and controls

58 lines (40 loc) · 3.57 KB

Changelog

v0.10.1 - 2024-05-07

  • Fixed an issue where importing a local file with the same name as a workspace would be detected as a workspace import (#32)

v0.10.0 - 2023-11-19

v0.9.0 - 2023-06-10

  • Added support for listing workspaces as peerDependencies & optionalDependencies (#25)
  • Fixed a bug where workspaces that do not have a name property defined in their package.json file resulted in crashes. They are now being ignored instead. (#24)

v0.8.0 - 2023-03-04

  • Replaced the underlying package to resolve monorepo packages (from get-monorepo-packages to find-workspaces) which comes with a few benefits:
    • pnpm workspaces support
    • bolt support
    • caching layer which allows this plugin to look for the workspaces root relative to the file that is being linted instead of the current working directory.
      This means you can run now eslint from outside a monorepo.

v0.7.0 - 2021-10-08

  • Fixed a bug where imports were incorrectly flagged as relative imports (#11)
  • It is no longer necessary to add the plugin when also extending one of the presets:
{
-  "plugins": ["workspaces"],
  "extends": ["plugin:workspaces/recommended"]
}

v0.6.2 - 2020-10-16

  • Fixed a bug where mismatched dependencies were listed as disallowed (#9)

v0.6.1 - 2020-10-15

v0.6.0 - 2020-10-06

  • Added Scopes -- a way to partially allow imports across workspace boundaries (@tobilen in #8)
  • Added this CHANGELOG file