Skip to content

docs: use typedoc to re-generate ref docs #1105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 8 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
node_modules
.idea
doc/
node_modules/
build/
docs/
coverage/
npm-debug.log
coverage
# Empty API
apis/iam/v1alpha1.js
.nyc_output
**/*.js
**/*.js.map
!samples/**/*.js
.vscode
**/*.d.ts
**/credentials.json
.idea
.DS_Store
samples/*.keys.json
samples/**/credentials.json

7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: build build-tools check check-samples check-licenses check-typescript clean coverage docs fix fix-samples fix-typescript generate install test test-samples watch
.PHONY: build build-tools check check-samples check-licenses check-typescript clean coverage docs fix fix-samples fix-typescript generate install publish-docs test test-samples watch

PATH := $(shell npm bin):$(PATH)

Expand Down Expand Up @@ -27,7 +27,7 @@ coverage: build
nyc report --reporter=html

docs:
jsdoc -c jsdoc-conf.json
typedoc --out docs src

fix: fix-typescript fix-samples

Expand All @@ -47,6 +47,9 @@ install:
node_modules/.link:
npm link && npm link googleapis && touch $@

publish-docs:
gh-pages --dotfiles --dist docs --remote upstream

test: coverage check

test-samples: node_modules/.link build
Expand Down
42 changes: 0 additions & 42 deletions jsdoc-conf.json

This file was deleted.

Loading