@sentry/junior-github 0.56.0 → 0.58.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.js +4 -6
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -96,12 +96,10 @@ export function githubPlugin(options = {}) {
96
96
  mode: 0o755,
97
97
  content: prepareCommitMsgHook(),
98
98
  });
99
- await Promise.all([
100
- configureGit(ctx, "core.hooksPath", hooksPath),
101
- configureGit(ctx, "commit.gpgsign", "false"),
102
- configureGit(ctx, "credential.helper", ""),
103
- configureGit(ctx, "http.emptyAuth", "true"),
104
- ]);
99
+ await configureGit(ctx, "core.hooksPath", hooksPath);
100
+ await configureGit(ctx, "commit.gpgsign", "false");
101
+ await configureGit(ctx, "credential.helper", "");
102
+ await configureGit(ctx, "http.emptyAuth", "true");
105
103
  },
106
104
  beforeToolExecute(ctx) {
107
105
  if (ctx.tool.name !== "bash") {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/junior-github",
3
- "version": "0.56.0",
3
+ "version": "0.58.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -25,6 +25,6 @@
25
25
  "SETUP.md"
26
26
  ],
27
27
  "dependencies": {
28
- "@sentry/junior-plugin-api": "0.56.0"
28
+ "@sentry/junior-plugin-api": "0.58.0"
29
29
  }
30
30
  }