@mservices-tech/scripts 4.0.0-scripts-fix-versioning-rc.0 → 4.0.1-changelog-selector-style-rc.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,25 @@
1
+
2
+ ## 4.0.0 (2026-03-24)
3
+
4
+
5
+ ### ⚠ BREAKING CHANGES
6
+
7
+ * **scripts:** Refactor removeGitHashesFromMarkdownFile to bash
8
+
9
+ ### Features
10
+
11
+ * **scripts:** Enable to pass versionrc path
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **scripts:** Fix utils path in remove_git_hashes_from_markdown_file
17
+ * **scripts:** Refactor removeGitHashesFromMarkdownFile to bash
18
+ * **scripts:** Remove self dependency
19
+ * **scripts:** Use @mservices-tech/eslint-config-node and @mservices-tech/prettier-config
20
+ * **scripts:** Use @mservices-tech/utils package
21
+ * **scripts:** Use proper scope in bump_version
22
+
1
23
  ### 3.2.2 (2026-03-19)
2
24
 
3
25
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mservices-tech/scripts",
3
- "version": "4.0.0-scripts-fix-versioning-rc.0",
3
+ "version": "4.0.1-changelog-selector-style-rc.0",
4
4
  "license": "MIT",
5
5
  "packageManager": "yarn@4.4.1",
6
6
  "bin": {
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env bash
2
2
 
3
- source "$(dirname "$0")/../src/utils.sh" || exit 1
3
+ source "$(dirname "$0")/../utils.sh" || exit 1
4
4
 
5
5
  function usage() {
6
6
  cat << END
@@ -33,6 +33,9 @@ function main() {
33
33
 
34
34
  # Remove version compare links: [1.2.3](https://...) → 1.2.3
35
35
  perl -i -pe 's/\[(\d+\.\d+\.\d+[^\]]*)\]\(https?:\/\/[\w#.\/?=-]+\)/$1/g' "$markdown_file"
36
+
37
+ # Convert '*' list bullets to '-' (standard-version generates '*', but we use '-')
38
+ perl -i -pe 's/^\* /- /' "$markdown_file"
36
39
  }
37
40
 
38
41
  main "$@"