@containerbase/semantic-release-pnpm 1.0.0-semantic-release → 1.1.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/lib/index.js +5 -9
  2. package/package.json +5 -3
package/lib/index.js CHANGED
@@ -30,8 +30,9 @@ async function prepare(_pluginConfig, {
30
30
  {
31
31
  cwd,
32
32
  env,
33
+ stdout,
33
34
  stderr,
34
- stdout
35
+ preferLocal: true
35
36
  }
36
37
  );
37
38
  }
@@ -49,18 +50,13 @@ async function publish(_pluginConfig, {
49
50
  );
50
51
  await execa(
51
52
  "pnpm",
52
- [
53
- "-r",
54
- "publish",
55
- "--tag",
56
- distributionTag,
57
- "--no-git-checks"
58
- ],
53
+ ["-r", "publish", "--tag", distributionTag, "--no-git-checks"],
59
54
  {
60
55
  cwd,
61
56
  env,
57
+ stdout,
62
58
  stderr,
63
- stdout
59
+ preferLocal: true
64
60
  }
65
61
  );
66
62
  }
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "@containerbase/semantic-release-pnpm",
3
- "version": "1.0.0-semantic-release",
3
+ "version": "1.1.0",
4
4
  "description": "A pnpm plugin for semantic-release",
5
5
  "keywords": [
6
6
  "semantic-release",
7
7
  "pnpm"
8
8
  ],
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/containerbase/semantic-release.git"
12
+ },
9
13
  "license": "MIT",
10
14
  "author": "Michael Kriese <michael.kriese@gmx.de>",
11
15
  "type": "module",
@@ -15,8 +19,6 @@
15
19
  ],
16
20
  "dependencies": {
17
21
  "execa": "^9.0.0",
18
- "npm": "^11.6.0",
19
- "pnpm": "^10.16.1",
20
22
  "semver": "^7.7.2"
21
23
  },
22
24
  "peerDependencies": {