Releases: gicentre/prettier-plugin-elm
0.11.0 (2023-04-18)
0.10.0 (2023-03-02)
0.9.0 (2022-11-05)
0.8.0 (2021-08-24)
0.7.0 (2020-03-28)
-
Pin
elm-format
to0.8.3
-
Use Prettier v2 in CI (v1 should be still supported)
-
Upgrade dependencies
-
Switch to Github Actions (drop Azure DepOps CI/CD)
0.6.0 (2020-01-13)
-
[breaking change] Drop Node 8 support due to its end of life on 2019-12-31
-
Upgrade dependencies
-
Pin
elm-format
dependency to0.8.2
instead of relying on^0.8.2
(this can improve predictability of the plugin behaviour in future)
0.5.0 (2019-07-21)
-
[breaking change] Drop Node 6 support due to its end of life on 2019-04-30
-
Upgrade dependencies
0.4.2 (2018-12-22)
-
Refactor the plugin using TypeScript and thus possibly improve stability in a couple of rare edge cases (#8)
-
Set up Azure Pipelines, remove Travis, AppVeyor and Code Climate integrations (e518299c, #9, 0e68c6eb)
-
Remove
prettier
frompeerDependencies
to fix a warning when installing the plugin globally (0aea2ea6, ff1411f9) -
Upgrade dependencies (a36e0017)
-
Reflect recent changes in README.md (be2676b7)
0.4.1 (2018-10-14)
- Fix exception in
getElmFormatVersion()
when no globalelm-format
is installed (#6)
0.4.0 (2018-10-13)
-
Upgrade
elm-format
to0.8.1
to support Elm0.19
(#4)This includes replacing
module Main exposing (..)
withmodule Main exposing (something)
in tests, according to the new output inelm-format
.To support formatting of Elm code in markdown blocks,
prettier-plugin-elm
passes--elm-version=0.19
toelm-format
.
If you use Elm0.18
, please install[email protected]
. -
Stop running tests in Node 9 due to its end of life on 2018-06-30 (#5)
-
Internal:
- Upgrade dependencies
- Add pre-push git hook via
husky
to avoid dumb linting errors in CI