Skip to content
This repository has been archived by the owner on Apr 25, 2022. It is now read-only.

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(docs): upgrade typedoc from 0.19 to 0.20
Browse files Browse the repository at this point in the history
felipecrs committed Mar 6, 2021
1 parent 313c3c6 commit 97cc9e5
Showing 5 changed files with 248 additions and 198 deletions.
417 changes: 231 additions & 186 deletions package-lock.json
3 changes: 0 additions & 3 deletions src/commands/save-image.ts
Original file line number Diff line number Diff line change
@@ -3,9 +3,6 @@ import * as Listr from "listr";
import * as chalk from "chalk";
import Image from "../model/image";

/**
* @noInheritDoc
*/
export default class SaveImage extends Command {
static description = "save a docker image to a tgz file";

4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
/**
* @module
* @hidden
*/
export { run } from "@oclif/command";
9 changes: 6 additions & 3 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -49,13 +49,16 @@ module.exports = {
[
"docusaurus-plugin-typedoc",
{
inputFiles: ["../src/"],
entryPoints: ["../src/"],
tsconfig: "../tsconfig.json",
docsRoot: "../docs",
mode: "file",
readme: "none",
name: `${title} API`,
includeVersion: true,
plugin: ["typedoc-plugin-no-inherit"],
plugin: [
"typedoc-plugin-merge-modules",
"typedoc-plugin-rename-defaults",
],
sidebar: {
globalsLabel: "Table of Contents",
},
13 changes: 7 additions & 6 deletions website/package.json
Original file line number Diff line number Diff line change
@@ -16,6 +16,13 @@
"@mdx-js/react": "^1.6.22",
"clsx": "^1.1.1"
},
"devDependencies": {
"docusaurus-plugin-typedoc": "^0.10.0",
"typedoc": "^0.20.29",
"typedoc-plugin-markdown": "^3.6.0",
"typedoc-plugin-merge-modules": "^1.0.0",
"typedoc-plugin-rename-defaults": "^0.1.0"
},
"browserslist": {
"production": [
">0.2%",
@@ -28,12 +35,6 @@
"last 1 safari version"
]
},
"devDependencies": {
"docusaurus-plugin-typedoc": "^0.4.1",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "~3.1.1",
"typedoc-plugin-no-inherit": "^1.2.2"
},
"volta": {
"extends": "../package.json"
}

0 comments on commit 97cc9e5

Please sign in to comment.