Skip to content

Commit

Permalink
Merge pull request #428 from technote-space/release/next-v5.3.10
Browse files Browse the repository at this point in the history
release: v5.3.11
  • Loading branch information
technote-space authored Feb 22, 2023
2 parents c177c4b + e525e6c commit e5d6d74
Show file tree
Hide file tree
Showing 5 changed files with 859 additions and 590 deletions.
38 changes: 18 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@technote-space/github-action-helper",
"version": "5.3.10",
"version": "5.3.11",
"description": "Helper for GitHub Action.",
"keywords": [
"github",
Expand Down Expand Up @@ -45,31 +45,29 @@
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/openapi-types": "^14.0.0",
"@octokit/plugin-rest-endpoint-methods": "^6.7.0",
"@technote-space/github-action-log-helper": "^0.2.9",
"@technote-space/github-action-log-helper": "^0.2.10",
"shell-escape": "^0.2.0",
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@rollup/plugin-typescript": "^10.0.1",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-typescript": "^11.0.0",
"@sindresorhus/tsconfig": "^3.0.1",
"@technote-space/github-action-test-helper": "^0.11.1",
"@types/node": "^18.11.9",
"@technote-space/github-action-test-helper": "^0.11.2",
"@types/node": "^18.14.0",
"@types/shell-escape": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vitest/coverage-c8": "^0.25.3",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.4",
"nock": "^13.2.9",
"rollup": "^3.5.0",
"typescript": "^4.9.3",
"vitest": "^0.25.3"
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/coverage-c8": "^0.28.5",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nock": "^13.3.0",
"rollup": "^3.17.2",
"typescript": "^4.9.5",
"vitest": "^0.28.5"
},
"publishConfig": {
"access": "public"
Expand Down
3 changes: 1 addition & 2 deletions src/api-helper.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { Octokit } from './types.js';
import type { Octokit, components } from './types.js';
import type { Context } from '@actions/github/lib/context.js';
import type { components } from '@octokit/openapi-types';
import type { OctokitResponse } from '@octokit/types';
import type { Logger } from '@technote-space/github-action-log-helper';
import fs from 'fs';
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { Octokit } from './types.js';
import type { Octokit, components } from './types.js';
import ApiHelper from './api-helper.js';
import Command from './command.js';
import GitHelper from './git-helper.js';

export * as Utils from './utils.js';
export * as ContextHelper from './context-helper.js';

export type { Octokit };
export type { Octokit, components };
export { Command, ApiHelper, GitHelper };
7 changes: 3 additions & 4 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import type { GitHub } from '@actions/github/lib/utils.js';
import type { RestEndpointMethods } from '@octokit/plugin-rest-endpoint-methods/dist-types/generated/method-types.js';

export type Octokit = InstanceType<typeof GitHub> & {
rest: RestEndpointMethods;
};
export type Octokit = InstanceType<typeof GitHub>;

export type { components } from '@octokit/openapi-types';
Loading

0 comments on commit e5d6d74

Please sign in to comment.