Skip to content

Commit

Permalink
breaking(npm): bump dependencies w/ fix
Browse files Browse the repository at this point in the history
- execa@^4.0.0
- fs-extra@^9.0.0
- globby@^11.0.0
  • Loading branch information
erisu committed Mar 31, 2020
1 parent cd0e2d9 commit 8a499ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build-tools/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ module.exports = function build (userConfig) {
};

function getCommitId () {
return execa.stdout('git', ['rev-parse', 'HEAD'], { cwd: pkgRoot });
return execa('git', ['rev-parse', 'HEAD'], { cwd: pkgRoot }).then(data => data.stdout);
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@
}
],
"dependencies": {
"execa": "^1.0.0",
"fs-extra": "^8.0.1",
"globby": "^9.2.0"
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"globby": "^11.0.0"
},
"devDependencies": {
"@cordova/eslint-config": "^3.0.0",
Expand Down

0 comments on commit 8a499ec

Please sign in to comment.