Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for ESM custom formatters #7343

Merged
merged 2 commits into from Nov 15, 2023
Merged

Add support for ESM custom formatters #7343

merged 2 commits into from Nov 15, 2023

Conversation

ybiquitous
Copy link
Member

Which issue, if any, is this issue related to?

Closes #7267

Is there anything in the PR that needs further explanation?

This PR adds the support for ESM custom formatters. A custom formatter can be specified via CLI.

Also, this change refactors code as below to reduce the published size:

  • move the logic in lib/resolveCustomFormatter.{cjs,mjs} files into cli.mjs
  • remove the files

This change adds the support for ESM custom formatters.
A custom formatter can be specified via CLI.

Also, this change refactors code as below to reduce the published size:
- move the logic in `lib/resolveCustomFormatter.{cjs,mjs}` files into `cli.mjs`
- remove the files
Copy link

changeset-bot bot commented Nov 15, 2023

🦋 Changeset detected

Latest commit: d896cd7

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
stylelint Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

import cli, { buildCLI } from '../cli.mjs';

const pkg = readJSONFile(new URL('../../package.json', import.meta.url));

const fixturesPath = (...elems) =>
replaceBackslashes(path.join(fileURLToPath(new URL('./fixtures', import.meta.url)), ...elems));

jest.unstable_mockModule('stylelint-test-custom-formatter', () => ({ default: customFormatter }));
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

@jeddy3 jeddy3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent, thank you.

Let's add an entry to the migration guide too. (It's okay if there's repetition at this stage as we can give the guide a clean-up before releasing.)

@ybiquitous
Copy link
Member Author

@jeddy3 Thanks for the reminder. I've updated the guide via d896cd7.

If you have any concerns, feel free to edit the guide directly. 🙏🏼

Copy link
Member

@jeddy3 jeddy3 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thank you.

@ybiquitous ybiquitous merged commit 59d7712 into main Nov 15, 2023
16 checks passed
@ybiquitous ybiquitous deleted the issue-7267 branch November 15, 2023 16:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Support custom formatter for ESM
2 participants