@alanscodelog/semantic-release-config 5.0.4 → 6.0.1

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/package.json +50 -57
  2. package/release.config.js +1 -1
package/package.json CHANGED
@@ -1,58 +1,51 @@
1
1
  {
2
- "name": "@alanscodelog/semantic-release-config",
3
- "description": "My preferred semantic release config.",
4
- "version": "5.0.4",
5
- "type": "module",
6
- "main": "release.config.js",
7
- "scripts": {
8
- "lint:commits": "commitlint --from $(git rev-list --max-parents=0 HEAD) --to HEAD --verbose",
9
- "prepare": "husky"
10
- },
11
- "dependencies": {
12
- "@alanscodelog/commitlint-config": "^3.0.2",
13
- "@alanscodelog/semantic-release-config": "^5.0.1",
14
- "@semantic-release/changelog": "^6.0.3",
15
- "@semantic-release/commit-analyzer": "^13.0.0",
16
- "@semantic-release/git": "^10.0.1",
17
- "@semantic-release/github": "^11.0.0",
18
- "@semantic-release/npm": "^12.0.1",
19
- "@semantic-release/release-notes-generator": "^14.0.1",
20
- "conventional-changelog-conventionalcommits": "^8.0.0",
21
- "semantic-release": "^24.1.2"
22
- },
23
- "devDependencies": {
24
- "@commitlint/cli": "^19.3.0",
25
- "husky": "^9.0.11"
26
- },
27
- "author": "Alan <alanscodelog@gmail.com>",
28
- "repository": "https://github.com/alanscodelog/semantic-release-config",
29
- "license": "MIT",
30
- "files": [
31
- "release.config.js",
32
- "template.hbs"
33
- ],
34
- "release": {
35
- "extends": [
36
- "./release.config.js"
37
- ]
38
- },
39
- "commitlint": {
40
- "extends": [
41
- "@alanscodelog"
42
- ]
43
- },
44
- "engines": {
45
- "node": ">=20"
46
- },
47
- "@comments": {
48
- "devDependencies": {
49
- "@alanscodelog/semantic-release-config": "Depends on itself only because the commitlint config package needs it as a peer dependency to get the types. Commitlint might fail if the types change from one version to the other, but then we can just skip the commit hooks."
50
- },
51
- "scripts": {
52
- "lint:commits": "Lints all unpushed commits in the active branch."
53
- }
54
- },
55
- "publishConfig": {
56
- "access": "public"
57
- }
58
- }
2
+ "name": "@alanscodelog/semantic-release-config",
3
+ "description": "My preferred semantic release config.",
4
+ "version": "6.0.1",
5
+ "type": "module",
6
+ "main": "release.config.js",
7
+ "dependencies": {
8
+ "@alanscodelog/commitlint-config": "^3.1.2",
9
+ "@anolilab/semantic-release-pnpm": "^5.0.0",
10
+ "@semantic-release/changelog": "^6.0.3",
11
+ "@semantic-release/git": "^10.0.1",
12
+ "conventional-changelog-conventionalcommits": "^9.1.0",
13
+ "semantic-release": "^25.0.3"
14
+ },
15
+ "devDependencies": {
16
+ "@commitlint/cli": "^20.4.1",
17
+ "husky": "^9.1.7"
18
+ },
19
+ "author": "Alan <alanscodelog@gmail.com>",
20
+ "repository": "https://github.com/AlansCodeLog/semantic-release-config",
21
+ "license": "MIT",
22
+ "files": [
23
+ "release.config.js",
24
+ "template.hbs"
25
+ ],
26
+ "release": {
27
+ "extends": [
28
+ "./release.config.js"
29
+ ]
30
+ },
31
+ "commitlint": {
32
+ "extends": [
33
+ "@alanscodelog"
34
+ ]
35
+ },
36
+ "engines": {
37
+ "node": ">=20"
38
+ },
39
+ "@comments": {
40
+ "scripts": {
41
+ "lint:commits": "commitlint --from-last-tag --to HEAD --verbose"
42
+ }
43
+ },
44
+ "publishConfig": {
45
+ "access": "public",
46
+ "provenance": true
47
+ },
48
+ "scripts": {
49
+ "lint:commits": "commitlint --from-last-tag --to HEAD --verbose"
50
+ }
51
+ }
package/release.config.js CHANGED
@@ -100,7 +100,7 @@ export default{
100
100
  },
101
101
  } ],
102
102
  // careful, order here matters, see https://github.com/semantic-release/semantic-release/issues/1593#issuecomment-656866839
103
- "@semantic-release/npm",
103
+ "@anolilab/semantic-release-pnpm",
104
104
  ["@semantic-release/git", {
105
105
  "assets": [ "package.json" ],
106
106
  "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"