Comparing version 0.0.9 to 0.0.10
@@ -7,4 +7,4 @@ export { getRepoLog } from './get-repo-log'; | ||
export { sendWorkspacesSlackMessage } from './send-workspaces-slack-message'; | ||
export { makeRepoGithubReleases } from './make-repo-github-release'; | ||
export { makeRepoGithubRelease } from './make-repo-github-release'; | ||
export { makeWorkspacesGithubReleases } from './make-workspaces-github-releases'; | ||
export * from './types'; |
@@ -7,4 +7,4 @@ export { getRepoLog } from "./get-repo-log"; | ||
export { sendWorkspacesSlackMessage } from "./send-workspaces-slack-message"; | ||
export { makeRepoGithubReleases } from "./make-repo-github-release"; | ||
export { makeRepoGithubRelease } from "./make-repo-github-release"; | ||
export { makeWorkspacesGithubReleases } from "./make-workspaces-github-releases"; | ||
export * from "./types"; |
import { TOptions, TRepoLog } from '@auto/utils'; | ||
import { TGithubOptions } from './types'; | ||
export declare const makeRepoGithubReleases: (log: TRepoLog, githubOptions: TGithubOptions, autoOptions: TOptions) => Promise<void>; | ||
export declare const makeRepoGithubRelease: (log: TRepoLog, githubOptions: TGithubOptions, autoOptions: TOptions) => Promise<void>; |
import request from 'request-promise-native'; | ||
import { GITHUB_API_REPOS_URL } from "./utils"; | ||
export const makeRepoGithubReleases = async (log, githubOptions, autoOptions) => { | ||
export const makeRepoGithubRelease = async (log, githubOptions, autoOptions) => { | ||
if (typeof githubOptions.token !== 'string') { | ||
@@ -5,0 +5,0 @@ throw new Error('GitHub token is required'); |
{ | ||
"name": "@auto/log", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": "", |
9578