Skip to content

Commit

Permalink
Fix docs for new packages
Browse files Browse the repository at this point in the history
  • Loading branch information
vidartf authored and Steven Silvester committed Dec 23, 2019
1 parent b209e74 commit 69f56ec
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -48,7 +48,7 @@
"create:test": "node buildutils/lib/create-test-package.js",
"create:theme": "node buildutils/lib/create-theme.js",
"deduplicate": "jlpm yarn-deduplicate -s fewer",
"docs": "lerna run docs --ignore \"@jupyterlab/coreutils\" ",
"docs": "lerna run docs --ignore \"@jupyterlab/settingregistry\" ",
"eslint": "eslint --fix .",
"eslint:check": "eslint .",
"get:dependency": "node buildutils/lib/get-dependency.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/coreutils/package.json
Expand Up @@ -27,7 +27,7 @@
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"docs": "typedoc src --tsconfig typedoc-tsconfig.json",
"docs": "typedoc src",
"prepublishOnly": "npm run build",
"watch": "tsc -b --watch"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/nbformat/package.json
Expand Up @@ -28,7 +28,7 @@
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"docs": "typedoc src --tsconfig typedoc-tsconfig.json",
"docs": "typedoc src",
"prepublishOnly": "npm run build",
"watch": "tsc -b -w --listEmittedFiles"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/nbformat/typedoc.json
@@ -0,0 +1,6 @@
{
"excludeNotExported": true,
"mode": "file",
"out": "../../docs/api/nbformat",
"theme": "../../typedoc-theme"
}
2 changes: 1 addition & 1 deletion packages/settingregistry/package.json
Expand Up @@ -26,7 +26,7 @@
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"docs": "typedoc src --tsconfig typedoc-tsconfig.json",
"docs": "typedoc src",
"prepublishOnly": "npm run build",
"watch": "tsc -b -w --listEmittedFiles"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/settingregistry/typedoc.json
@@ -0,0 +1,6 @@
{
"excludeNotExported": true,
"mode": "file",
"out": "../../docs/api/settingregistry",
"theme": "../../typedoc-theme"
}
2 changes: 1 addition & 1 deletion packages/statedb/package.json
Expand Up @@ -26,7 +26,7 @@
"scripts": {
"build": "tsc -b",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"docs": "typedoc src --tsconfig typedoc-tsconfig.json",
"docs": "typedoc src",
"prepublishOnly": "npm run build",
"watch": "tsc -b -w --listEmittedFiles"
},
Expand Down
6 changes: 6 additions & 0 deletions packages/statedb/typedoc.json
@@ -0,0 +1,6 @@
{
"excludeNotExported": true,
"mode": "file",
"out": "../../docs/api/statedb",
"theme": "../../typedoc-theme"
}

0 comments on commit 69f56ec

Please sign in to comment.