├── .eslintignore ├── .eslintrc ├── .gitignore ├── .ruby-version ├── .travis.yml ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── docs ├── _config.yml ├── build-github-pages.md ├── contributing.md ├── images │ └── publish-release.png ├── index.md ├── publish-release.md ├── travis-to-github-pages.md └── use-jsdoc-theme.md ├── gulpfile.js ├── index.md ├── jsdoc.conf ├── package.json ├── project └── create-release-bundle.sh ├── src ├── defaults │ ├── .ruby-version │ ├── Gemfile │ ├── docs │ │ ├── _config.yml │ │ └── index.md │ └── jsdoc.conf ├── node │ ├── bin │ │ └── cli.js │ └── cli │ │ ├── cli-help.txt │ │ ├── exit-lifecycle.js │ │ ├── index.js │ │ ├── log-helper.js │ │ ├── shell-scripts │ │ ├── checkout-gh-pages.sh │ │ ├── login-to-npm.sh │ │ ├── push-git-tags.sh │ │ ├── push-to-github.sh │ │ └── remove-old-files.sh │ │ └── strings.js └── themes │ ├── jekyll │ ├── _includes │ │ ├── components │ │ │ ├── footer.html │ │ │ ├── navigation-reference-docs.html │ │ │ ├── navigation.html │ │ │ ├── page-header.html │ │ │ ├── top-bar.html │ │ │ └── two-column.html │ │ ├── html-head.html │ │ ├── scripts.html │ │ ├── svgs │ │ │ ├── github.svg │ │ │ ├── google-developers-logo.svg │ │ │ ├── menu.svg │ │ │ ├── share.svg │ │ │ └── twitter.svg │ │ └── variables.html │ ├── _layouts │ │ ├── default.html │ │ ├── index.html │ │ ├── jsdoc.html │ │ └── redirect.html │ ├── scripts │ │ ├── detabinator.js │ │ ├── jsdocs-collapse.js │ │ ├── nav-drawer.js │ │ └── navigation-controller.js │ └── styles │ │ ├── components │ │ ├── code-styles.css │ │ ├── footer.css │ │ ├── google-dev-logo.css │ │ ├── heading-list.css │ │ ├── nav-content.css │ │ ├── navigation.css │ │ ├── page-header.css │ │ ├── svg-btn.css │ │ ├── top-bar.css │ │ └── two-column.css │ │ ├── jsdoc │ │ ├── details.css │ │ └── method.css │ │ ├── main.css │ │ └── variables │ │ ├── colors.css │ │ ├── dimens.css │ │ └── z-index.css │ └── jsdoc │ ├── customised-publish.js │ ├── publish.js │ └── tmpl │ ├── augments.tmpl │ ├── container.tmpl │ ├── details.tmpl │ ├── example.tmpl │ ├── examples.tmpl │ ├── exceptions.tmpl │ ├── layout.tmpl │ ├── mainpage.tmpl │ ├── members.tmpl │ ├── method.tmpl │ ├── params.tmpl │ ├── properties.tmpl │ ├── returns.tmpl │ ├── source.tmpl │ ├── tutorial.tmpl │ └── type.tmpl └── test ├── .eslintrc ├── cli-docs.js ├── cli-release.js ├── cli-tests.js └── helpers ├── jsdoc-run.sh └── serve.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.2.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/build-github-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/build-github-pages.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/images/publish-release.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/images/publish-release.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/publish-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/publish-release.md -------------------------------------------------------------------------------- /docs/travis-to-github-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/travis-to-github-pages.md -------------------------------------------------------------------------------- /docs/use-jsdoc-theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/docs/use-jsdoc-theme.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/index.md -------------------------------------------------------------------------------- /jsdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/jsdoc.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/package.json -------------------------------------------------------------------------------- /project/create-release-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/project/create-release-bundle.sh -------------------------------------------------------------------------------- /src/defaults/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.2.0 2 | -------------------------------------------------------------------------------- /src/defaults/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/defaults/Gemfile -------------------------------------------------------------------------------- /src/defaults/docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/defaults/docs/_config.yml -------------------------------------------------------------------------------- /src/defaults/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/defaults/docs/index.md -------------------------------------------------------------------------------- /src/defaults/jsdoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/defaults/jsdoc.conf -------------------------------------------------------------------------------- /src/node/bin/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/bin/cli.js -------------------------------------------------------------------------------- /src/node/cli/cli-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/cli-help.txt -------------------------------------------------------------------------------- /src/node/cli/exit-lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/exit-lifecycle.js -------------------------------------------------------------------------------- /src/node/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/index.js -------------------------------------------------------------------------------- /src/node/cli/log-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/log-helper.js -------------------------------------------------------------------------------- /src/node/cli/shell-scripts/checkout-gh-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/shell-scripts/checkout-gh-pages.sh -------------------------------------------------------------------------------- /src/node/cli/shell-scripts/login-to-npm.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | npm whoami &>/dev/null || npm login 5 | -------------------------------------------------------------------------------- /src/node/cli/shell-scripts/push-git-tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/shell-scripts/push-git-tags.sh -------------------------------------------------------------------------------- /src/node/cli/shell-scripts/push-to-github.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/shell-scripts/push-to-github.sh -------------------------------------------------------------------------------- /src/node/cli/shell-scripts/remove-old-files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/shell-scripts/remove-old-files.sh -------------------------------------------------------------------------------- /src/node/cli/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/node/cli/strings.js -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/components/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/components/footer.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/components/navigation-reference-docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/components/navigation-reference-docs.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/components/navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/components/navigation.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/components/page-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/components/page-header.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/components/top-bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/components/top-bar.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/components/two-column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/components/two-column.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/html-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/html-head.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/scripts.html -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/svgs/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/svgs/github.svg -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/svgs/google-developers-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/svgs/google-developers-logo.svg -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/svgs/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/svgs/menu.svg -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/svgs/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/svgs/share.svg -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/svgs/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/svgs/twitter.svg -------------------------------------------------------------------------------- /src/themes/jekyll/_includes/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_includes/variables.html -------------------------------------------------------------------------------- /src/themes/jekyll/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_layouts/default.html -------------------------------------------------------------------------------- /src/themes/jekyll/_layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_layouts/index.html -------------------------------------------------------------------------------- /src/themes/jekyll/_layouts/jsdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_layouts/jsdoc.html -------------------------------------------------------------------------------- /src/themes/jekyll/_layouts/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/_layouts/redirect.html -------------------------------------------------------------------------------- /src/themes/jekyll/scripts/detabinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/scripts/detabinator.js -------------------------------------------------------------------------------- /src/themes/jekyll/scripts/jsdocs-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/scripts/jsdocs-collapse.js -------------------------------------------------------------------------------- /src/themes/jekyll/scripts/nav-drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/scripts/nav-drawer.js -------------------------------------------------------------------------------- /src/themes/jekyll/scripts/navigation-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/scripts/navigation-controller.js -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/code-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/code-styles.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/footer.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/google-dev-logo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/google-dev-logo.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/heading-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/heading-list.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/nav-content.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/nav-content.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/navigation.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/page-header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/page-header.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/svg-btn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/svg-btn.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/top-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/top-bar.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/components/two-column.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/components/two-column.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/jsdoc/details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/jsdoc/details.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/jsdoc/method.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/jsdoc/method.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/main.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/variables/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/variables/colors.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/variables/dimens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/variables/dimens.css -------------------------------------------------------------------------------- /src/themes/jekyll/styles/variables/z-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jekyll/styles/variables/z-index.css -------------------------------------------------------------------------------- /src/themes/jsdoc/customised-publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/customised-publish.js -------------------------------------------------------------------------------- /src/themes/jsdoc/publish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/publish.js -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/augments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/augments.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/container.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/container.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/details.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/details.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/example.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/example.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/examples.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/examples.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/exceptions.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/exceptions.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/layout.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/layout.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/mainpage.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/mainpage.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/members.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/members.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/method.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/params.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/params.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/properties.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/properties.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/returns.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/returns.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/source.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/source.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/tutorial.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/tutorial.tmpl -------------------------------------------------------------------------------- /src/themes/jsdoc/tmpl/type.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/src/themes/jsdoc/tmpl/type.tmpl -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/cli-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/test/cli-docs.js -------------------------------------------------------------------------------- /test/cli-release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/test/cli-release.js -------------------------------------------------------------------------------- /test/cli-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/test/cli-tests.js -------------------------------------------------------------------------------- /test/helpers/jsdoc-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/test/helpers/jsdoc-run.sh -------------------------------------------------------------------------------- /test/helpers/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/npm-publish-scripts/HEAD/test/helpers/serve.js --------------------------------------------------------------------------------