Skip to content

Commit

Permalink
fix: use non esm version of execa
Browse files Browse the repository at this point in the history
  • Loading branch information
simonseyock committed Dec 15, 2022
1 parent be7b1fc commit 295cfe9
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 60 deletions.
96 changes: 38 additions & 58 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"homepage": "https://github.com/terrestris/maven-semantic-release#readme",
"dependencies": {
"@semantic-release/error": "^3.0.0",
"execa": "^6.1.0"
"execa": "^5.1.1"
}
}
2 changes: 1 addition & 1 deletion src/maven.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/

const SemanticReleaseError = require("@semantic-release/error");
const execa = require('execa').execa;
const execa = require('execa');

function exec () {
const childProcess = execa(...arguments);
Expand Down

0 comments on commit 295cfe9

Please sign in to comment.