update typings, deps and ci

This commit is contained in:
2017-03-12 00:06:56 +01:00
parent 9f3a71f0b9
commit fde809eb02
6 changed files with 39 additions and 24 deletions

View File

@ -203,9 +203,8 @@ export let toObjectSync = function (filePathArg, fileTypeArg?) {
* @param filePath
* @returns {string|Buffer|any}
*/
export let toStringSync = function (filePath) {
let fileString
fileString = plugins.fsExtra.readFileSync(filePath, 'utf8')
export let toStringSync = function (filePath: string) {
let fileString = plugins.fsExtra.readFileSync(filePath, 'utf8')
return fileString
}