Comparing version 10.0.3-alpha.3 to 10.0.3-beta.0
@@ -13,3 +13,3 @@ /// <reference types="node" /> | ||
export declare function readJSON(file: string): Promise<any>; | ||
export declare function outputJSON(file: string, data: any, options?: FS.WriteOptions): Promise<void>; | ||
export declare function outputJSON(file: string, data: any): Promise<void>; | ||
export declare function realpathSync(p: string): string; |
@@ -56,5 +56,5 @@ "use strict"; | ||
exports.readJSON = readJSON; | ||
async function outputJSON(file, data, options = {}) { | ||
async function outputJSON(file, data) { | ||
debug('outputJSON', file); | ||
return deps_1.default.fs.outputJSON(file, data, Object.assign({ spaces: 2 }, options)); | ||
return deps_1.default.fs.outputJSON(file, data, { spaces: 2 }); | ||
} | ||
@@ -61,0 +61,0 @@ exports.outputJSON = outputJSON; |
{ | ||
"name": "heroku", | ||
"description": "CLI to interact with Heroku", | ||
"version": "10.0.3-alpha.3", | ||
"version": "10.0.3-beta.0", | ||
"author": "Heroku", | ||
@@ -49,3 +49,3 @@ "bin": "./bin/run", | ||
"foreman": "^3.0.1", | ||
"fs-extra": "^9.1", | ||
"fs-extra": "^11.3.0", | ||
"github-url-to-object": "^4.0.4", | ||
@@ -82,4 +82,3 @@ "glob": "^10.3.10", | ||
"word-wrap": "^1.2.5", | ||
"ws": "^6.2.2", | ||
"yargs-parser": "18.1.3" | ||
"ws": "^6.2.2" | ||
}, | ||
@@ -94,3 +93,3 @@ "devDependencies": { | ||
"@types/debug": "^4.1.2", | ||
"@types/fs-extra": "^7.0.0", | ||
"@types/fs-extra": "^11.0.4", | ||
"@types/glob": "^7.1.1", | ||
@@ -108,2 +107,3 @@ "@types/inquirer": "^8.2.10", | ||
"@types/shell-quote": "^1.7.5", | ||
"@types/sinon": "^17.0.3", | ||
"@types/ssh2": "^1.15.0", | ||
@@ -133,3 +133,3 @@ "@types/std-mocks": "^1.0.4", | ||
"rimraf": "5.0.5", | ||
"sinon": "^7.2.4", | ||
"sinon": "^19.0.2", | ||
"std-mocks": "^2.0.0", | ||
@@ -399,3 +399,3 @@ "strip-ansi": "6.0.1", | ||
"types": "lib/index.d.ts", | ||
"gitHead": "ca78edeb011baec69aa41adac799c1de35264dfb" | ||
"gitHead": "a9b1f3fa165a6a37e0681031eabfb1589dbf4e2e" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
73
1670504
51
839
43381
+ Addedfs-extra@11.3.0(transitive)
- Removedyargs-parser@18.1.3
Updatedfs-extra@^11.3.0