npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

typedoc-plugin-versions-cli

v0.1.12

Published

A companion CLI tool for typedoc-plugins-versions.

Downloads

1,256

Readme

typedoc-plugin-versions-cli 🧑‍💻

A companion CLI tool for typedoc-plugin-versions.

npm package version npm package downloads typedocs coverage code quality license

npm test publish code coverage publish package publish docs

github twitter GitHub Sponsors donation button PayPal donation button

Table of contents

Install

npm

npm i --global typedoc-plugin-versions-cli
npm i -D typedoc-plugin-versions-cli

Usage

Run any of the following from the command line:

tpv <command> [options..]
typedoc-plugin-versions-cli <command> [options..]
typedoc-plugin-versions <command> [options..]
typedoc-versions <command> [options..]

See details about the various commands and their options via the --help flag:

tpv --help

All boolean flags which are true by default can be negated by prefixing with no-, e.g., the following are equivalent:

tpv purge --no-stale
tpv purge --stale false

When installing as a local dev dependency, you may need to prefix the commands with npx, e.g.:

npx tpv <command> [options..]

Commands

purge

Deletes old doc builds and/or versions matching semver ranges. To synchronize metadata and symbolic links after, run tpv sync.

tpv purge [versions..] [flags]

Displays a confirmation prompt before performing changes.

Options
  • --stale [boolean] [default: true]Purge stale doc builds, e.g. v1.0.0-alpha.1 is considered stale once v1.0.0 has been built.
  • --major <number> [default: Infinity]Purge all but the specified number of major versions.
  • --minor <number> [default: Infinity]Purge all but the specified number of minor versions per major version.
  • --patch <number> [default: Infinity]Purge all but the specified number of patch versions per minor version.
  • --exclude <versions..>Exclude versions matching the specified semver ranges from the purge operation.
  • --pre, --prerelease [boolean] [default: false]Include prerelease versions when evaluating semver ranges.
  • -y, --yes [boolean] [default: false]Automatically confirms prompts.
  • --out <string>The path to your typedoc output directory. By default this is inferred from your typedoc configuration.
  • --typedoc <string> [default: "."]The path to your typedoc configuration file, e.g. typedoc.json. By default this is searched for in the current working directory.
  • --tsconfig <string> [default: "."]The path to your TypeScript tsconfig file, e.g. tsconfig.json. By default this is searched for in the current working directory.

synchronize

Ensures your typedoc-plugin-versions metadata and symbolic links are up-to-date. Useful after deleting old doc builds.

tpv synchronize [flags]
tpv sync [flags]

Displays a confirmation prompt before performing changes.

Options
  • -y, --yes [boolean] [default: false]Automatically confirms prompts.
  • --symlink [boolean] [default: false]Always ensures symbolic links are up-to-date, regardless of confirmation prompts.
  • --out <string>The path to your typedoc output directory. By default this is inferred from your typedoc configuration.
  • --typedoc <string> [default: "."]The path to your typedoc configuration file, e.g. typedoc.json. By default this is searched for in the current working directory.
  • --tsconfig <string> [default: "."]The path to your TypeScript tsconfig file, e.g. tsconfig.json. By default this is searched for in the current working directory.

License

typedoc-plugin-versions-cli is licensed under MIT © 2022 Tobey Blaber.