diff --git a/.gitignore b/.gitignore index d9ea2b7..f072c3d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ dist/ lib/ coverage/ +/docs + .umi/ .umi-production/ .log diff --git a/package.json b/package.json index dea5cbb..23d50da 100644 --- a/package.json +++ b/package.json @@ -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}", diff --git a/typedoc.json b/typedoc.json index 6c25a1f..b2303c0 100644 --- a/typedoc.json +++ b/typedoc.json @@ -4,6 +4,6 @@ "entryPoints": ["packages/core", "packages/designer", "packages/helpers"], "entryPointStrategy": "packages", "exclude": ["packages/**/tests/**/*"], - "out": "apps/docs", + "out": "docs", "logLevel": "Verbose" }