From d6492fdeea4ccce07479cbe1505b333d47088a19 Mon Sep 17 00:00:00 2001 From: Shinichi Okada <147320+shinokada@users.noreply.github.com> Date: Thu, 26 Sep 2024 12:50:01 +0200 Subject: [PATCH] fix: #1444 CONTRIBUTING doc update --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 60806badf..ca7191575 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,10 +23,10 @@ Please add a type to `export`ed variables. When we generate props files, it will Please run the following to update prop files. ```sh -npm run gen:props +pnpm gen:docs && pnpm gen:compo-data ``` -This script will update/generate files in `src/routes/props`. +This script will update component document and update/generate files in `src/routes/component-data`. Again avoid type inference for `export`ed variables. @@ -62,5 +62,5 @@ git commit -a "feat: change btnClass name to bClass" -m "BREAKING CHANGE: change

Before submitting a PR, please run a test:

```sh -npm run test +pnpm test:integration ```