Auto-merge for PR #793 via VersionBot

Tweak TS & add missing deps that may cause build failures in some envs
This commit is contained in:
resin-io-versionbot[bot] 2018-02-20 22:07:21 +00:00 committed by GitHub
commit 6515f88d92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 3 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/).
## v6.13.3 - 2018-02-20
* Tweak TS & add missing deps that may cause build failures in some envs #793 [Tim Perry]
## v6.13.2 - 2018-02-20
* Ensure login does not wait for the browser process to close #794 [Tim Perry]

View File

@ -22,11 +22,11 @@ const resin = ResinSdk.fromSharedOptions();
export function generateBaseConfig(
application: ResinSdk.Application,
options: {},
options: { appUpdatePollInterval?: number },
) {
options = _.mapValues(options, function(value, key) {
if (key === 'appUpdatePollInterval') {
return value * 60 * 1000;
return value! * 60 * 1000;
} else {
return value;
}

View File

@ -1,6 +1,6 @@
{
"name": "resin-cli",
"version": "6.13.2",
"version": "6.13.3",
"description": "The official resin.io CLI tool",
"main": "./build/actions/index.js",
"homepage": "https://github.com/resin-io/resin-cli",
@ -56,8 +56,10 @@
"devDependencies": {
"@types/archiver": "^2.0.1",
"@types/bluebird": "^3.5.19",
"@types/es6-promise": "0.0.32",
"@types/fs-extra": "^5.0.0",
"@types/is-root": "^1.0.0",
"@types/lodash": "^4.14.103",
"@types/mkdirp": "^0.5.2",
"@types/prettyjson": "0.0.28",
"@types/raven": "^2.1.2",