semantic-release-minecraft 2.3.67 → 2.3.68

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.
@@ -20,27 +20,19 @@ jobs:
20
20
  with:
21
21
  fetch-depth: 0
22
22
 
23
- - uses: pnpm/action-setup@v4
23
+ - name: Setup Bun
24
+ uses: oven-sh/setup-bun@v2
24
25
  with:
25
- version: 10.33.4
26
-
27
- - name: Setup Node.js
28
- uses: actions/setup-node@v6
29
- with:
30
- node-version: "lts/*"
31
- cache: pnpm
26
+ bun-version: latest
32
27
 
33
28
  - name: Install dependencies
34
- run: pnpm install
35
-
36
- - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
37
- run: npm audit signatures
29
+ run: bun install --frozen-lockfile
38
30
 
39
31
  - name: Build
40
- run: pnpm run build
32
+ run: bun run build
41
33
 
42
34
  - name: Release
43
35
  env:
44
36
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45
37
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
46
- run: npx semantic-release
38
+ run: bunx semantic-release
package/.oxfmtrc.json CHANGED
@@ -3,26 +3,5 @@
3
3
  "trailingComma": "es5",
4
4
  "tabWidth": 4,
5
5
  "singleQuote": true,
6
- "experimentalSortImports": {
7
- "groups": [
8
- [
9
- "^(?:@[^/].*|[A-Za-z].*)$"
10
- ],
11
- [
12
- "^@/.*$"
13
- ],
14
- [
15
- "^[./].*$"
16
- ]
17
- ],
18
- "ignoreCase": true,
19
- "newlinesBetween": true,
20
- "sortSideEffects": false,
21
- "partitionByComment": false,
22
- "partitionByNewline": false,
23
- "internalPattern": [
24
- "^@/"
25
- ],
26
- "order": "asc"
27
- }
6
+ "sortImports": true
28
7
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [2.3.68](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.67...v2.3.68) (2026-06-16)
2
+
3
+ ### 🐛 Bug Fixes
4
+
5
+ * fix curseforge api url ([cdf0b0b](https://github.com/pynickle/semantic-release-minecraft/commit/cdf0b0b9705c868c68c37dbdbaee87e5ab39f895))
6
+
7
+ ### 🔧 Miscellaneous Changes
8
+
9
+ * use bun ([bd24b40](https://github.com/pynickle/semantic-release-minecraft/commit/bd24b4041c8c0e7ea00d5042c4428756f3a18044))
10
+
1
11
  ## [2.3.67](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.66...v2.3.67) (2026-06-02)
2
12
 
3
13
  ### 🔧 Miscellaneous Changes