fba-cli 1.3.0 → 1.3.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
6
 
7
+ ## [1.3.1](https://github.com/mbehr1/fba-cli/compare/v1.3.0...v1.3.1) (2024-09-29)
8
+
7
9
  # [1.3.0](https://github.com/mbehr1/fba-cli/compare/v1.2.0...v1.3.0) (2024-09-29)
8
10
 
9
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fba-cli",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "A CLI (command line interface) to execute FBA (fishbone analysis) files with DLT-logs/adlt.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,9 +39,42 @@
39
39
  "prerelease": true
40
40
  }
41
41
  ],
42
- "extends": "semantic-release-npm-github-publish",
43
42
  "plugins": [
44
- "@semantic-release/commit-analyzer",
43
+ [
44
+ "@semantic-release/commit-analyzer",
45
+ {
46
+ "releaseRules": [
47
+ {
48
+ "type": "build",
49
+ "release": "patch"
50
+ },
51
+ {
52
+ "type": "ci",
53
+ "release": "patch"
54
+ },
55
+ {
56
+ "type": "chore",
57
+ "release": "patch"
58
+ },
59
+ {
60
+ "type": "docs",
61
+ "release": "patch"
62
+ },
63
+ {
64
+ "type": "refactor",
65
+ "release": "patch"
66
+ },
67
+ {
68
+ "type": "style",
69
+ "release": "patch"
70
+ },
71
+ {
72
+ "type": "test",
73
+ "release": "patch"
74
+ }
75
+ ]
76
+ }
77
+ ],
45
78
  "@semantic-release/release-notes-generator",
46
79
  [
47
80
  "@semantic-release/changelog",
@@ -65,6 +98,11 @@
65
98
  [
66
99
  "@semantic-release/git",
67
100
  {
101
+ "assets": [
102
+ "package.json",
103
+ "package-lock.json",
104
+ "CHANGELOG.md"
105
+ ],
68
106
  "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
69
107
  }
70
108
  ]
@@ -93,8 +131,8 @@
93
131
  "xmlbuilder2": "^3.1.1"
94
132
  },
95
133
  "devDependencies": {
134
+ "@semantic-release/changelog": "^6.0.3",
96
135
  "@semantic-release/git": "^10.0.1",
97
- "@semantic-release/release-notes-generator": "^12.1.0",
98
136
  "@types/cli-progress": "^3.11.6",
99
137
  "@types/jest": "^29.5.13",
100
138
  "@types/js-yaml": "^4.0.9",
@@ -107,8 +145,7 @@
107
145
  "@typescript-eslint/parser": "^6.8.0",
108
146
  "eslint": "^8.52.0",
109
147
  "jest": "^29.7.0",
110
- "semantic-release": "^22.0.6",
111
- "semantic-release-npm-github-publish": "^1.5.4",
148
+ "semantic-release": "^24.1.2",
112
149
  "ts-jest": "^29.1.1",
113
150
  "ts-node": "^10.9.1",
114
151
  "typescript": "^5.2.2"