Skip to content

Commit

Permalink
Merge pull request #7 from iasql/fix-links
Browse files Browse the repository at this point in the history
Fix links
  • Loading branch information
yrobla authored Feb 9, 2023
2 parents 234e65c + cf6fae0 commit 0544402
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions dist/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
Object.defineProperty(exports, "__esModule", { value: true });
exports.getPluginOptions = void 0;
const DEFAULT_PLUGIN_OPTIONS = {
id: "reference",
id: "aws",
docsRoot: "docs",
out: "reference",
out: "aws",
cleanOutputDir: true,
sidebar: {
fullNames: false,
categoryLabel: "Reference",
categoryLabel: "Modules",
indexLabel: undefined,
readmeLabel: "Reference",
readmeLabel: "Modules",
position: null,
autoConfiguration: true,
usedSidebar: "docs",
Expand Down
2 changes: 1 addition & 1 deletion dist/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class DocusaurusTheme extends theme_1.MarkdownTheme {
const pageTitle = this.getTitle(page);
//const sidebarLabel = this.getSidebarLabel(page);
//const sidebarPosition = this.getSidebarPosition(page);
const sidebarLabel = "Reference";
const sidebarLabel = "Modules";
const sidebarPosition = "0";
let items = {
id: pageId,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docusaurus-plugin-iasql",
"version": "1.0.1",
"version": "1.0.6",
"description": "A Docusaurus v2 plugin to build API documentation with TypeDoc for IaSQL.",
"main": "dist/index.js",
"files": [
Expand Down
8 changes: 4 additions & 4 deletions src/options.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { PluginOptions } from "./types";

const DEFAULT_PLUGIN_OPTIONS: PluginOptions = {
id: "reference",
id: "aws",
docsRoot: "docs",
out: "reference",
out: "aws",
cleanOutputDir: true,
sidebar: {
fullNames: false,
categoryLabel: "Reference",
categoryLabel: "Modules",
indexLabel: undefined,
readmeLabel: "Reference",
readmeLabel: "Modules",
position: null,
autoConfiguration: true,
usedSidebar: "docs",
Expand Down
2 changes: 1 addition & 1 deletion src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export class DocusaurusTheme extends MarkdownTheme {
const pageTitle = this.getTitle(page);
//const sidebarLabel = this.getSidebarLabel(page);
//const sidebarPosition = this.getSidebarPosition(page);
const sidebarLabel = "Reference";
const sidebarLabel = "Modules";
const sidebarPosition = "0";

let items: FrontMatter = {
Expand Down

0 comments on commit 0544402

Please sign in to comment.