Skip to content

release: v5.3.7 #415

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

Merged
merged 2 commits into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion 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.6",
"version": "5.3.7",
"description": "Helper for GitHub Action.",
"keywords": [
"github",
Expand Down
3 changes: 1 addition & 2 deletions src/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { expect, it } from 'vitest';
import { Command, ApiHelper, GitHelper, Types, Utils, ContextHelper } from './index.js';
import { Command, ApiHelper, GitHelper, Utils, ContextHelper } from './index.js';

it('helpers can be imported', () => {
expect(Command).not.toBeFalsy();
expect(ApiHelper).not.toBeFalsy();
expect(GitHelper).not.toBeFalsy();
expect(Types).not.toBeFalsy();
expect(Utils).not.toBeFalsy();
expect(ContextHelper).not.toBeFalsy();
});
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import type { Octokit } from './types.js';
import ApiHelper from './api-helper.js';
import Command from './command.js';
import GitHelper from './git-helper.js';

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

export type { Octokit };
export { Command, ApiHelper, GitHelper };