Stylelint Formatter Pretty Versions Save

✨ A pretty Stylelint formatter.

v4.0.0

4 months ago

Breaking Changes

  • Require Stylelint 16.0.0 or newer.
  • Require Node.js 18.12.0 or newer.
  • This package is now pure ESM. It cannot be require()'d from CommonJS. This means you have the following choices:
    1. Use ESM yourself. (preferred)
      Use import formatter from 'stylelint-formatter-pretty' instead of const formatter = require('stylelint-formatter-pretty') to import the package.
    2. If you cannot move to ESM yet, do not upgrade to this version.

Updates

Full Changelog: https://github.com/mrcgrtz/stylelint-formatter-pretty/compare/v3.2.1...v4.0.0

v3.2.1

8 months ago

Announcement

This will be the last version to support Node 14 and 16.

Updates

Full Changelog: https://github.com/mrcgrtz/stylelint-formatter-pretty/compare/v3.2.0...v3.2.1

v3.2.0

1 year ago

New features

  • Add hyperlinks for rules. (#121)

Fixes

  • Dim the rule to be on par with eslint-formatter-pretty.

Updates

Full Changelog: https://github.com/mrcgrtz/stylelint-formatter-pretty/compare/v3.1.1...v3.2.0

v3.1.1

1 year ago

Full Changelog: https://github.com/mrcgrtz/stylelint-formatter-pretty/compare/v3.1.0...v3.1.1

v3.1.0

2 years ago
  • Fix using this formatter with the Stylelint CLI (#41). As Stylelint does not support ESM yet (see https://github.com/stylelint/stylelint/issues/5291), this formatter stays a hybrid package for the time being.
  • Downgrade these dependencies to non-ESM versions:
    • ansi-escapes
    • chalk
    • log-symbols
    • plur
    • string-width
  • Bump xo from 0.45.0 to 0.47.0 by @dependabot

New Contributors

Full Changelog: https://github.com/Dreamseer/stylelint-formatter-pretty/compare/v3.0.1...v3.1.0

v3.0.1

2 years ago

v3.0.0

2 years ago

Breaking Changes

  • Require Node.js 14 or newer.

  • This package is now pure ESM. It cannot be require()'d from CommonJS. This means you have the following choices:

    1. Use ESM yourself. (preferred)
      Use import foo from 'foo' instead of const foo = require('foo') to import the package.
    2. If the package is used in an async context, you could use await import(…) from CommonJS instead of require(…).
    3. If you cannot move to ESM yet, do not upgrade to this version.

    I would strongly recommend moving to ESM. ESM can still import CommonJS packages, but CommonJS packages cannot import ESM packages synchronously.

    ESM is natively supported by Node.js 12 and later.

    Please note: My repos are not the place to ask ESM support questions.

v2.1.1

3 years ago

v2.1.0

3 years ago

v2.0.1

4 years ago