Skip to content

Commit 0f7c1db

Browse files
Merge pull request #415 from technote-space/release/next-v5.3.6
release: v5.3.7
2 parents 31aac08 + 18bc883 commit 0f7c1db

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@technote-space/github-action-helper",
3-
"version": "5.3.6",
3+
"version": "5.3.7",
44
"description": "Helper for GitHub Action.",
55
"keywords": [
66
"github",

src/index.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import { expect, it } from 'vitest';
2-
import { Command, ApiHelper, GitHelper, Types, Utils, ContextHelper } from './index.js';
2+
import { Command, ApiHelper, GitHelper, Utils, ContextHelper } from './index.js';
33

44
it('helpers can be imported', () => {
55
expect(Command).not.toBeFalsy();
66
expect(ApiHelper).not.toBeFalsy();
77
expect(GitHelper).not.toBeFalsy();
8-
expect(Types).not.toBeFalsy();
98
expect(Utils).not.toBeFalsy();
109
expect(ContextHelper).not.toBeFalsy();
1110
});

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1+
import type { Octokit } from './types.js';
12
import ApiHelper from './api-helper.js';
23
import Command from './command.js';
34
import GitHelper from './git-helper.js';
45

5-
export * as Types from './types.js';
66
export * as Utils from './utils.js';
77
export * as ContextHelper from './context-helper.js';
88

9+
export type { Octokit };
910
export { Command, ApiHelper, GitHelper };

0 commit comments

Comments
 (0)