@dexteel/mesf-core 5.14.1 → 5.14.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dexteel/mesf-core",
3
- "version": "5.14.1",
3
+ "version": "5.14.3",
4
4
  "author": "Dexteel Team",
5
5
  "module": "dist/index.esm.js",
6
6
  "typings": "dist/index.d.ts",
@@ -1,20 +1,13 @@
1
1
  {
2
2
  "packages": {
3
3
  ".": {
4
- "release-type": "simple",
4
+ "release-type": "node",
5
5
  "package-name": "@dexteel/mesf-core",
6
6
  "changelog-path": "CHANGELOG.md",
7
7
  "bump-minor-pre-major": true,
8
8
  "bump-patch-for-minor-pre-major": true,
9
9
  "draft": false,
10
- "prerelease": false,
11
- "extra-files": [
12
- {
13
- "type": "json",
14
- "path": "package.json",
15
- "jsonpath": "$.version"
16
- }
17
- ]
10
+ "prerelease": false
18
11
  }
19
12
  },
20
13
  "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
@@ -1,61 +0,0 @@
1
- name: Release Please
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
-
8
- jobs:
9
- release-please:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - uses: googleapis/release-please-action@v4
13
- id: release
14
- with:
15
- command: manifest
16
- token: ${{ secrets.GITHUB_TOKEN }}
17
-
18
- - uses: actions/checkout@v4
19
- if: ${{ steps.release.outputs.release_created }}
20
-
21
- - name: Setup Node.js
22
- if: ${{ steps.release.outputs.release_created }}
23
- uses: actions/setup-node@v4
24
- with:
25
- node-version: 'lts/hydrogen' # Adjust this to your Node.js version
26
-
27
- - name: Update Node.js package versions
28
- if: ${{ steps.release.outputs.release_created }}
29
- run: |
30
- version="${{ steps.release.outputs.version }}"
31
- find . -name "package.json" -type f -print0 | while IFS= read -r -d '' file; do
32
- jq ".version = \"${version}\"" "$file" > temp.json && mv temp.json "$file"
33
- done
34
-
35
- - name: Update CHANGELOG.md
36
- if: ${{ steps.release.outputs.release_created }}
37
- run: |
38
- version="${{ steps.release.outputs.version }}"
39
- date=$(date +"%Y-%m-%d")
40
- echo -e "# Changelog\n\n## [${version}] - ${date}\n\n${{ steps.release.outputs.changelog }}\n\n$(cat CHANGELOG.md)" > CHANGELOG.md
41
-
42
- - name: Commit changes
43
- if: ${{ steps.release.outputs.release_created }}
44
- run: |
45
- git config --local user.email "action@github.com"
46
- git config --local user.name "GitHub Action"
47
- git add .
48
- git commit -m "chore: update versions and CHANGELOG for ${{ steps.release.outputs.version }}" || echo "No changes to commit"
49
- git push
50
-
51
- - name: Create Release
52
- if: ${{ steps.release.outputs.release_created }}
53
- uses: actions/create-release@v1
54
- env:
55
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56
- with:
57
- tag_name: ${{ steps.release.outputs.tag_name }}
58
- release_name: Release ${{ steps.release.outputs.version }}
59
- body: ${{ steps.release.outputs.changelog }}
60
- draft: false
61
- prerelease: false