Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump typedoc from 0.25.13 to 0.26.6 #536

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore(deps-dev): bump typedoc from 0.25.13 to 0.26.6
Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.25.13 to 0.26.6.
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.25.13...v0.26.6)

---
updated-dependencies:
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
dependabot[bot] authored Aug 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3c1dbb408b84bde7421fffd4414382a80387bf37
308 changes: 213 additions & 95 deletions package-lock.json
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@
"@types/jest": "^29.5.12",
"jest": "^29.1.2",
"ts-jest": "^29.1.2",
"typedoc": "0.25.13",
"typedoc": "0.26.6",
"typescript": "4.9.5"
}
}

Unchanged files with check annotations Beta

import { OpenRPCTypingsSupportedLanguages } from "./";
const version = require("../package.json").version; // tslint:disable-line
function makeOptions(fileName: string, dirName: string, lang: OpenRPCTypingsSupportedLanguages) {

Check warning on line 10 in src/cli.ts

GitHub Actions / lint

Missing return type on function
return {
dirName,
fileName,
return language[lang];
}
export async function generateTypingsFile(openrpcDocument: OpenRPC, options: TypingsOptions[]) {

Check warning on line 22 in src/generate-typings-file.ts

GitHub Actions / lint

Missing return type on function
const methodTypings = new MethodTypings(openrpcDocument);
return await Promise.all(options.map(async (option: TypingsOptions) => {
import { dereferenceDocument } from "@open-rpc/schema-utils-js";
import defaultReferenceResolver from "@json-schema-tools/reference-resolver"
const getTestOpenRPCDocument = () => ({

Check warning on line 7 in src/index.test.ts

GitHub Actions / lint

Missing return type on function
info: {
title: "jipperjobber",
version: "3.2.1",
expectedJibberTypescript,
].join("\n");
const expectedNipTipRust = "";

Check warning on line 81 in src/index.test.ts

GitHub Actions / lint

'expectedNipTipRust' is assigned a value but never used
const expectedRipSlipRust = [
"extern crate serde;",
"extern crate serde_json;",
"\tJibber(jibberNiptip Niptip) (Ripslip, error)",
"}",
].join("\n");
const expectedPython = [

Check warning on line 203 in src/index.test.ts

GitHub Actions / lint

'expectedPython' is assigned a value but never used
expectedReepadoopPython,
expectedSkeepadeepPython,
expectedNipTipPython,
import { MethodObject, OpenrpcDocument as OpenRPC } from "@open-rpc/meta-schema";
import { languageSafeName } from "@json-schema-tools/transpiler/build/utils";
const getMethodTyping = (method: MethodObject) => {

Check warning on line 12 in src/python.ts

GitHub Actions / lint

Missing return type on function

Check warning on line 12 in src/python.ts

GitHub Actions / lint

'method' is defined but never used
return "";
};
return languageSafeName(method.name);
};
export const getParamsTyping: GetParamsTyping = (method) => {

Check warning on line 26 in src/python.ts

GitHub Actions / lint

'method' is defined but never used
return "";
};
export const getParamsTypings: GetParamsTypings = (method) => {

Check warning on line 30 in src/python.ts

GitHub Actions / lint

'method' is defined but never used
return "";
};
return languageSafeName(method.name);
};
const getParamsTyping = (method: MethodObject) => {

Check warning on line 16 in src/rust.ts

GitHub Actions / lint

Missing return type on function
const params = (method.params as ContentDescriptorObject[]).map(
(param) => `${param.name}: ${languageSafeName(getTitle(titleizer(param.schema)))}`,
).join(", ");