Skip to content

Commit c1be322

Browse files
chore: release package(s) (#553)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8c6fbe0 commit c1be322

File tree

6 files changed

+49
-24
lines changed

6 files changed

+49
-24
lines changed

.changeset/shaggy-planes-warn.md

-20
This file was deleted.

packages/eslint-mdx/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Change Log
22

3+
## 3.3.0
4+
5+
### Minor Changes
6+
7+
- [#552](https://github.com/mdx-js/eslint-mdx/pull/552) [`1c31834`](https://github.com/mdx-js/eslint-mdx/commit/1c31834fa987452df774111e60c36e5912756ad7) Thanks [@JounQin](https://github.com/JounQin)! - feat: the new version is ESM primary, while commonjs is still supported.
8+
9+
ESM migration:
10+
11+
```ts
12+
// before
13+
import eslintMdx from 'eslint-mdx'
14+
import eslintPluginMdx from 'eslint-plugin-mdx'
15+
```
16+
17+
```ts
18+
// after
19+
import * as eslintMdx from 'eslint-mdx'
20+
import * as eslintPluginMdx from 'eslint-plugin-mdx'
21+
```
22+
323
## 3.2.0
424

525
### Minor Changes

packages/eslint-mdx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-mdx",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"type": "module",
55
"description": "ESLint Parser for MDX",
66
"repository": "https://github.com/mdx-js/eslint-mdx.git",

packages/eslint-plugin-mdx/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## 3.3.0
4+
5+
### Minor Changes
6+
7+
- [#552](https://github.com/mdx-js/eslint-mdx/pull/552) [`1c31834`](https://github.com/mdx-js/eslint-mdx/commit/1c31834fa987452df774111e60c36e5912756ad7) Thanks [@JounQin](https://github.com/JounQin)! - feat: the new version is ESM primary, while commonjs is still supported.
8+
9+
ESM migration:
10+
11+
```ts
12+
// before
13+
import eslintMdx from 'eslint-mdx'
14+
import eslintPluginMdx from 'eslint-plugin-mdx'
15+
```
16+
17+
```ts
18+
// after
19+
import * as eslintMdx from 'eslint-mdx'
20+
import * as eslintPluginMdx from 'eslint-plugin-mdx'
21+
```
22+
23+
### Patch Changes
24+
25+
- Updated dependencies [[`1c31834`](https://github.com/mdx-js/eslint-mdx/commit/1c31834fa987452df774111e60c36e5912756ad7)]:
26+
27+
328
## 3.2.0
429

530
### Minor Changes

packages/eslint-plugin-mdx/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-mdx",
3-
"version": "3.2.0",
3+
"version": "3.3.0",
44
"type": "module",
55
"description": "ESLint Plugin for MDX",
66
"repository": "https://github.com/mdx-js/eslint-mdx.git",
@@ -45,7 +45,7 @@
4545
"eslint": ">=8.0.0"
4646
},
4747
"dependencies": {
48-
"eslint-mdx": "^3.2.0",
48+
"eslint-mdx": "^3.3.0",
4949
"mdast-util-from-markdown": "^2.0.2",
5050
"remark-mdx": "^3.1.0",
5151
"remark-parse": "^11.0.0",

yarn.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -7806,7 +7806,7 @@ __metadata:
78067806
version: 0.0.0-use.local
78077807
resolution: "eslint-plugin-mdx@workspace:packages/eslint-plugin-mdx"
78087808
dependencies:
7809-
eslint-mdx: "npm:^3.2.0"
7809+
eslint-mdx: "npm:^3.3.0"
78107810
mdast-util-from-markdown: "npm:^2.0.2"
78117811
remark-mdx: "npm:^3.1.0"
78127812
remark-parse: "npm:^11.0.0"

0 commit comments

Comments
 (0)