Skip to content

Commit

Permalink
Fixes #1177.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Evans committed Jun 25, 2020
1 parent 3ada878 commit 7f726d3
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 152 deletions.
23 changes: 0 additions & 23 deletions docs/_api/copy_api.sh

This file was deleted.

182 changes: 60 additions & 122 deletions docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions docs/package.json
Expand Up @@ -5,7 +5,7 @@
"build": "npm run build:api && npm run build:site",
"build:site": "eleventy",
"build:site:watch": "eleventy --watch",
"build:api": "(cd _api && sh copy_api.sh) && typedoc --name \"lit-html API\" --readme _api/readme.md --mode modules --theme _api/theme --tsconfig ../tsconfig.json --ignoreCompilerErrors --excludeNotExported --excludePrivate --out ./api --gaID UA-39334307-23 _api/tmp/lit-html.ts _api/tmp/lib/shady-render.ts",
"build:api": "typedoc ../src/lit-html.ts ../src/lib/shady-render.ts",
"assets": "cp ../node_modules/prismjs/themes/prism-okaidia.css css/",
"serve": "serve",
"deploy": "npm run build && gcloud app deploy _site/app.yaml --project polymer-lit-html --no-promote"
Expand All @@ -19,7 +19,6 @@
"markdown-it-attrs": "^3.0.1",
"serve": "^11.3.0",
"slugify": "^1.3.6",
"typedoc": "^0.13.0",
"typedoc-plugin-external-module-name": "^1.1.3"
"typedoc": "^0.17.0-3"
}
}
12 changes: 12 additions & 0 deletions docs/typedoc.json
@@ -0,0 +1,12 @@
{
"readme": "./_api/readme.md",
"tsconfig": "../tsconfig.json",
"mode": "library",
"theme": "./_api/theme",
"excludeNotExported": true,
"excludePrivate": true,
"ignoreCompilerErrors": true,
"exclude": ["**/*test*", "**/node_modules/!(lit-html)/**", "**/test/**"],
"out": "./api",
"gaID": "UA-39334307-23"
}
3 changes: 1 addition & 2 deletions src/lib/shady-render.ts
Expand Up @@ -16,8 +16,7 @@
* Module to add shady DOM/shady CSS polyfill support to lit-html template
* rendering. See the [[render]] method for details.
*
* @module shady-render
* @preferred
* @packageDocumentation
*/

/**
Expand Down
3 changes: 1 addition & 2 deletions src/lit-html.ts
Expand Up @@ -22,8 +22,7 @@
* - [[svg]]
* - [[render]]
*
* @module lit-html
* @preferred
* @packageDocumentation
*/

/**
Expand Down

0 comments on commit 7f726d3

Please sign in to comment.