chore: update docs script

This commit is contained in:
wwsun
2023-08-31 10:12:18 +08:00
parent 4b06b33090
commit b9a8e0e50e
3 changed files with 4 additions and 2 deletions
+2
View File
@@ -3,6 +3,8 @@ dist/
lib/
coverage/
/docs
.umi/
.umi-production/
.log
+1 -1
View File
@@ -8,12 +8,12 @@
"scripts": {
"start": "yarn workspace playground start",
"start:story": "yarn workspace storybook storybook",
"start:docs": "yarn typedoc && open apps/docs/index.html",
"start:site": "yarn workspace website start",
"deploy:site": "yarn workspace website deploy",
"build": "lerna run build",
"build:site": "yarn workspace website build",
"typedoc": "typedoc --options typedoc.json",
"docs": "yarn typedoc && open docs/index.html",
"test": "jest",
"test:watch": "jest --watch",
"eslint": "eslint packages/**/src/*.{ts,tsx}",
+1 -1
View File
@@ -4,6 +4,6 @@
"entryPoints": ["packages/core", "packages/designer", "packages/helpers"],
"entryPointStrategy": "packages",
"exclude": ["packages/**/tests/**/*"],
"out": "apps/docs",
"out": "docs",
"logLevel": "Verbose"
}