mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-01-21 20:08:28 +00:00
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:
commit
6515f88d92
@ -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]
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user