Skip to content

Commit

Permalink
Merge pull request #10 from iasql/issue-2025
Browse files Browse the repository at this point in the history
include iasql_platform in bultin
  • Loading branch information
yrobla authored Feb 20, 2023
2 parents 3a008d6 + a73cef4 commit 759043a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/lib/resources/helpers/toc.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ function default_1(theme) {
});
md.push("### Builtin");
for (const child of builtin !== null && builtin !== void 0 ? builtin : []) {
if (child.name == "iasql_functions") {
if (child.name == "iasql_functions" ||
child.name == "iasql_platform") {
const content = displayChild(child, builtin !== null && builtin !== void 0 ? builtin : []);
md.push(...content);
}
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.1.0",
"version": "1.1.1",
"description": "A Docusaurus v2 plugin to build API documentation with TypeDoc for IaSQL.",
"main": "dist/index.js",
"files": [
Expand Down
5 changes: 4 additions & 1 deletion src/lib/resources/helpers/toc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,10 @@ export default function (theme: MarkdownTheme) {
md.push("### Builtin");

for (const child of builtin ?? []) {
if (child.name == "iasql_functions") {
if (
child.name == "iasql_functions" ||
child.name == "iasql_platform"
) {
const content = displayChild(child, builtin ?? []);
md.push(...content);
}
Expand Down

0 comments on commit 759043a

Please sign in to comment.