midi-shell-commands 1.2.0 → 1.2.2

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.
@@ -28,7 +28,7 @@ jobs:
28
28
  runs-on: ubuntu-latest
29
29
  steps:
30
30
  - name: Checkout
31
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
32
32
  with:
33
33
  fetch-depth: 0
34
34
  - name: Setup Node.js
@@ -47,7 +47,7 @@ jobs:
47
47
  run: npm run test:ci
48
48
  - name: Semantic Release
49
49
  if: ${{ github.event_name == 'push' }}
50
- uses: cycjimmy/semantic-release-action@9cc899c47e6841430bbaedb43de1560a568dfd16 # v5.0.0
50
+ uses: cycjimmy/semantic-release-action@b12c8f6015dc215fe37bc154d4ad456dd3833c90 # v6.0.0
51
51
  env:
52
52
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
53
  NPM_CONFIG_PROVENANCE: true
@@ -9,7 +9,7 @@ jobs:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
11
  - name: Checkout
12
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
12
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
13
13
  - name: Setup Node.js
14
14
  uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
15
15
  with:
@@ -25,7 +25,7 @@ jobs:
25
25
  runs-on: ubuntu-latest
26
26
  steps:
27
27
  - name: Checkout
28
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
28
+ uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
29
29
  - name: Setup Node.js
30
30
  uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
31
31
  with:
package/.nvmrc CHANGED
@@ -1 +1 @@
1
- 24.11.0
1
+ 24.11.1
package/.releaserc.json CHANGED
@@ -3,7 +3,28 @@
3
3
  "main"
4
4
  ],
5
5
  "plugins": [
6
- "@semantic-release/commit-analyzer",
6
+ [
7
+ "@semantic-release/commit-analyzer",
8
+ {
9
+ "preset": "conventionalcommits",
10
+ "releaseRules": [
11
+ {
12
+ "type": "feat",
13
+ "release": "minor"
14
+ },
15
+ {
16
+ "type": "*",
17
+ "release": "patch"
18
+ }
19
+ ],
20
+ "parserOpts": {
21
+ "noteKeywords": [
22
+ "BREAKING CHANGE",
23
+ "BREAKING CHANGES"
24
+ ]
25
+ }
26
+ }
27
+ ],
7
28
  "@semantic-release/release-notes-generator",
8
29
  [
9
30
  "@semantic-release/npm",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "midi-shell-commands",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "author": "Dawson Toth",
5
5
  "repository": "https://github.com/dawsontoth/midi-shell-commands.git",
6
6
  "scripts": {
@@ -36,6 +36,7 @@
36
36
  "@semantic-release/npm": "^13.1.1",
37
37
  "@semantic-release/release-notes-generator": "^14.1.0",
38
38
  "@vitest/coverage-v8": "^4.0.8",
39
+ "conventional-changelog-conventionalcommits": "^9.1.0",
39
40
  "eslint": "^9.39.1",
40
41
  "globals": "^16.5.0",
41
42
  "semantic-release": "^25.0.2",