Skip to content

Commit fd30cbe

Browse files
Packages ready to publish (#887)
Publish new versions Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent d99cf4e commit fd30cbe

File tree

9 files changed

+40
-19
lines changed

9 files changed

+40
-19
lines changed

.changeset/slimy-donkeys-bow.md

-5
This file was deleted.

packages/react-docgen-cli/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Release Notes
22

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5)]:
8+
9+
310
## 2.0.1
411

512
### Patch Changes

packages/react-docgen-cli/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-docgen/cli",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "A CLI to extract information from React components for documentation generation.",
55
"repository": {
66
"type": "git",
@@ -35,7 +35,7 @@
3535
"commander": "11.1.0",
3636
"debug": "4.3.4",
3737
"fast-glob": "3.3.2",
38-
"react-docgen": "workspace:7.0.1",
38+
"react-docgen": "workspace:7.0.2",
3939
"slash": "5.1.0"
4040
},
4141
"devDependencies": {

packages/react-docgen/CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## 7.0.2
4+
5+
### Patch Changes
6+
7+
- [`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5) Thanks [@danez](https://github.com/danez)! - Fix handling of template literals
8+
39
## 7.0.1
410

511
### Patch Changes
@@ -329,7 +335,7 @@
329335
allows multiple resolvers to be chained.
330336

331337
```ts
332-
import { builtinResolvers } from 'react-docgen';
338+
import { builtinResolvers } from "react-docgen";
333339

334340
const { ChainResolver } = builtinResolvers;
335341
const resolver = new ChainResolver([resolver1, resolver2], {
@@ -358,7 +364,7 @@
358364
addition to functions.
359365

360366
```ts
361-
import type { ResolverClass, ResolverFunction } from 'react-docgen';
367+
import type { ResolverClass, ResolverFunction } from "react-docgen";
362368

363369
// This was the only option until now
364370
const functionResolver: ResolverFunction = (file: FileState) => {
@@ -613,7 +619,7 @@
613619
chained.
614620

615621
```ts
616-
import { builtinResolvers } from 'react-docgen';
622+
import { builtinResolvers } from "react-docgen";
617623

618624
const { ChainResolver } = builtinResolvers;
619625
const resolver = new ChainResolver([resolver1, resolver2], {
@@ -624,7 +630,7 @@
624630
- 80e4c74: Allow resolvers to be classes in addition to functions.
625631

626632
```ts
627-
import type { ResolverClass, ResolverFunction } from 'react-docgen';
633+
import type { ResolverClass, ResolverFunction } from "react-docgen";
628634

629635
// This was the only option until now
630636
const functionResolver: ResolverFunction = (file: FileState) => {

packages/react-docgen/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-docgen",
3-
"version": "7.0.1",
3+
"version": "7.0.2",
44
"description": "A library to extract information from React components for documentation generation.",
55
"repository": {
66
"type": "git",

packages/website/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"postcss": "8.4.33",
2828
"postcss-lightningcss": "1.0.0",
2929
"react": "18.2.0",
30-
"react-docgen": "workspace:7.0.1",
30+
"react-docgen": "workspace:7.0.2",
3131
"react-dom": "18.2.0",
3232
"tailwindcss": "3.4.1"
3333
},

packages/website/src/pages/docs/release-notes/cli.mdx

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Release Notes
22

3+
## 2.0.2
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5)]:
8+
9+
310
## 2.0.1
411

512
### Patch Changes

packages/website/src/pages/docs/release-notes/react-docgen.mdx

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release Notes
22

3+
## 7.0.2
4+
5+
### Patch Changes
6+
7+
- [`64bf1aa`](https://github.com/reactjs/react-docgen/commit/64bf1aa078148b4d44f8634252e5b726e24b8ee5) Thanks [@danez](https://github.com/danez)! - Fix handling of template literals
8+
39
## 7.0.1
410

511
### Patch Changes
@@ -329,7 +335,7 @@
329335
allows multiple resolvers to be chained.
330336

331337
```ts
332-
import { builtinResolvers } from 'react-docgen';
338+
import { builtinResolvers } from "react-docgen";
333339

334340
const { ChainResolver } = builtinResolvers;
335341
const resolver = new ChainResolver([resolver1, resolver2], {
@@ -358,7 +364,7 @@
358364
addition to functions.
359365

360366
```ts
361-
import type { ResolverClass, ResolverFunction } from 'react-docgen';
367+
import type { ResolverClass, ResolverFunction } from "react-docgen";
362368

363369
// This was the only option until now
364370
const functionResolver: ResolverFunction = (file: FileState) => {
@@ -613,7 +619,7 @@
613619
chained.
614620

615621
```ts
616-
import { builtinResolvers } from 'react-docgen';
622+
import { builtinResolvers } from "react-docgen";
617623

618624
const { ChainResolver } = builtinResolvers;
619625
const resolver = new ChainResolver([resolver1, resolver2], {
@@ -624,7 +630,7 @@
624630
- 80e4c74: Allow resolvers to be classes in addition to functions.
625631

626632
```ts
627-
import type { ResolverClass, ResolverFunction } from 'react-docgen';
633+
import type { ResolverClass, ResolverFunction } from "react-docgen";
628634

629635
// This was the only option until now
630636
const functionResolver: ResolverFunction = (file: FileState) => {

pnpm-lock.yaml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)