Skip to content

Commit f0645a9

Browse files
committed
chore: remove yarn reference
close #6709
1 parent d67c80d commit f0645a9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/reactivity/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This package is inlined into Global & Browser ESM builds of user-facing renderers (e.g. `@vue/runtime-dom`), but also published as a package that can be used standalone. The standalone build should not be used alongside a pre-bundled build of a user-facing renderer, as they will have different internal storage for reactivity connections. A user-facing renderer should re-export all APIs from this package.
66

7-
For full exposed APIs, see `src/index.ts`. You can also run `yarn build reactivity --types` from repo root, which will generate an API report at `temp/reactivity.api.md`.
7+
For full exposed APIs, see `src/index.ts`. You can also run `pnpm build reactivity --types` from repo root, which will generate an API report at `temp/reactivity.api.md`.
88

99
## Credits
1010

packages/runtime-core/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
> This package is published only for typing and building custom renderers. It is NOT meant to be used in applications.
44
5-
For full exposed APIs, see `src/index.ts`. You can also run `yarn build runtime-core --types` from repo root, which will generate an API report at `temp/runtime-core.api.md`.
5+
For full exposed APIs, see `src/index.ts`. You can also run `pnpm build runtime-core --types` from repo root, which will generate an API report at `temp/runtime-core.api.md`.
66

77
## Building a Custom Renderer
88

9-
``` ts
9+
```ts
1010
import { createRenderer } from '@vue/runtime-core'
1111

1212
const { render, createApp } = createRenderer({
1313
patchProp,
1414
insert,
1515
remove,
16-
createElement,
16+
createElement
1717
// ...
1818
})
1919

0 commit comments

Comments
 (0)