easy-github-updater
Advanced tools
Comparing version 1.0.1 to 1.0.2
export declare const automatic: ({ waitTime, branch, repoUrl, sourceFolderPath, isNeedDefaultProcess, force, rebase, keep }: { | ||
waitTime: number; | ||
branch: string; | ||
waitTime?: number | undefined; | ||
branch?: string | undefined; | ||
repoUrl?: string | undefined; | ||
sourceFolderPath: string; | ||
sourceFolderPath?: string | undefined; | ||
isNeedDefaultProcess?: boolean | undefined; | ||
force: boolean; | ||
rebase: boolean; | ||
keep: string[]; | ||
force?: boolean | undefined; | ||
rebase?: boolean | undefined; | ||
keep?: string[] | undefined; | ||
}) => void; |
@@ -29,3 +29,3 @@ "use strict"; | ||
if (checkWaitTime == null) | ||
checkWaitTime = 5000; | ||
checkWaitTime = waitTime; | ||
logger_1.Logger('New updates of the application have been found at Github.'); | ||
@@ -32,0 +32,0 @@ logger_1.Logger("Repository URL: " + eventInfo.repoUrl + ", Branch: " + eventInfo.branch + "\r\n"); |
{ | ||
"name": "easy-github-updater", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "🚀 Github auto-updater of built available into node project.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -19,10 +19,10 @@ import { Update } from './update/update' | ||
}: { | ||
waitTime: number | ||
branch: string | ||
waitTime?: number | ||
branch?: string | ||
repoUrl?: string | ||
sourceFolderPath: string | ||
sourceFolderPath?: string | ||
isNeedDefaultProcess?: boolean | ||
force: boolean | ||
rebase: boolean | ||
keep: string[] | ||
force?: boolean | ||
rebase?: boolean | ||
keep?: string[] | ||
} | ||
@@ -66,3 +66,3 @@ ) => { | ||
if (checkWaitTime == null) | ||
checkWaitTime = 5000 | ||
checkWaitTime = waitTime | ||
@@ -69,0 +69,0 @@ Logger('New updates of the application have been found at Github.') |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74552