semantic-release-minecraft 2.3.8 → 2.3.9
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/.github/workflows/release.yml +1 -1
- package/.oxfmtrc.json +28 -0
- package/.oxlintrc.json +27 -0
- package/.releaserc.json +4 -0
- package/CHANGELOG.md +6 -0
- package/package.json +7 -12
- package/.prettierrc +0 -18
- package/eslint.config.js +0 -22
package/.oxfmtrc.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/oxfmt/configuration_schema.json",
|
|
3
|
+
"trailingComma": "es5",
|
|
4
|
+
"tabWidth": 4,
|
|
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
|
+
}
|
|
28
|
+
}
|
package/.oxlintrc.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
3
|
+
"plugins": [],
|
|
4
|
+
"categories": {
|
|
5
|
+
"correctness": "off"
|
|
6
|
+
},
|
|
7
|
+
"env": {
|
|
8
|
+
"builtin": true
|
|
9
|
+
},
|
|
10
|
+
"overrides": [
|
|
11
|
+
{
|
|
12
|
+
"files": [
|
|
13
|
+
"src/**/*.ts"
|
|
14
|
+
],
|
|
15
|
+
"rules": {
|
|
16
|
+
"curly": "off",
|
|
17
|
+
"no-unexpected-multiline": "off",
|
|
18
|
+
"unicorn/empty-brace-spaces": "off",
|
|
19
|
+
"unicorn/no-nested-ternary": "off",
|
|
20
|
+
"unicorn/number-literal-case": "off"
|
|
21
|
+
},
|
|
22
|
+
"plugins": [
|
|
23
|
+
"unicorn"
|
|
24
|
+
]
|
|
25
|
+
}
|
|
26
|
+
]
|
|
27
|
+
}
|
package/.releaserc.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [2.3.9](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.8...v2.3.9) (2025-12-04)
|
|
2
|
+
|
|
3
|
+
### 🔧 Miscellaneous Changes
|
|
4
|
+
|
|
5
|
+
* update dependencies, use oxfmt and oxlint ([6b12a6d](https://github.com/pynickle/semantic-release-minecraft/commit/6b12a6da28151655c2d92bdd37e5d573f6f13673))
|
|
6
|
+
|
|
1
7
|
## [2.3.8](https://github.com/pynickle/semantic-release-minecraft/compare/v2.3.7...v2.3.8) (2025-11-20)
|
|
2
8
|
|
|
3
9
|
### 🐛 Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-release-minecraft",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"description": "Automated Release For Minecraft Project",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"semantic-release",
|
|
@@ -13,20 +13,16 @@
|
|
|
13
13
|
"types": "dist/index.d.ts",
|
|
14
14
|
"type": "module",
|
|
15
15
|
"scripts": {
|
|
16
|
-
"lint": "
|
|
17
|
-
"lint:fix": "
|
|
16
|
+
"lint": "npx oxlint ./src",
|
|
17
|
+
"lint:fix": "npx oxlint ./src --fix",
|
|
18
|
+
"fmt": "npx oxfmt ./src",
|
|
18
19
|
"build": "tsc",
|
|
19
|
-
"prepublishOnly": "npm run build",
|
|
20
20
|
"semantic-release": "semantic-release"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
|
|
24
24
|
"@types/node": "^24.10.1",
|
|
25
|
-
"@types/lodash": "^4.17.
|
|
26
|
-
"eslint": "^9.39.1",
|
|
27
|
-
"eslint-config-prettier": "^10.1.8",
|
|
28
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
29
|
-
"prettier": "^3.6.2",
|
|
25
|
+
"@types/lodash": "^4.17.21",
|
|
30
26
|
"semantic-release": "^25.0.2",
|
|
31
27
|
"@semantic-release/changelog": "^6.0.3",
|
|
32
28
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
@@ -34,8 +30,7 @@
|
|
|
34
30
|
"@semantic-release/npm": "^13.1.2",
|
|
35
31
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
36
32
|
"conventional-changelog-conventionalcommits": "^9.1.0",
|
|
37
|
-
"typescript": "^5.9.3"
|
|
38
|
-
"typescript-eslint": "^8.47.0"
|
|
33
|
+
"typescript": "^5.9.3"
|
|
39
34
|
},
|
|
40
35
|
"peerDependencies": {
|
|
41
36
|
"semantic-release": ">=18.0.0"
|
|
@@ -43,7 +38,7 @@
|
|
|
43
38
|
"dependencies": {
|
|
44
39
|
"axios": "^1.13.2",
|
|
45
40
|
"form-data": "^4.0.5",
|
|
46
|
-
"glob": "^
|
|
41
|
+
"glob": "^13.0.0",
|
|
47
42
|
"lodash": "^4.17.21"
|
|
48
43
|
}
|
|
49
44
|
}
|
package/.prettierrc
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"trailingComma": "es5",
|
|
3
|
-
"tabWidth": 4,
|
|
4
|
-
"singleQuote": true,
|
|
5
|
-
"importOrder": [
|
|
6
|
-
"^(?:@[^/].*|[A-Za-z].*)$",
|
|
7
|
-
"^@/.*$",
|
|
8
|
-
"^[./].*$"
|
|
9
|
-
],
|
|
10
|
-
"importOrderSortSpecifiers": true,
|
|
11
|
-
"importOrderParserPlugins": [
|
|
12
|
-
"typescript",
|
|
13
|
-
"decorators"
|
|
14
|
-
],
|
|
15
|
-
"plugins": [
|
|
16
|
-
"@trivago/prettier-plugin-sort-imports"
|
|
17
|
-
],
|
|
18
|
-
}
|
package/eslint.config.js
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import typescriptEslint from 'typescript-eslint';
|
|
2
|
-
import prettier from 'eslint-plugin-prettier';
|
|
3
|
-
import prettierConfig from 'eslint-config-prettier';
|
|
4
|
-
|
|
5
|
-
export default typescriptEslint.config({
|
|
6
|
-
files: ['src/**/*.ts'],
|
|
7
|
-
plugins: {
|
|
8
|
-
'@typescript-eslint': typescriptEslint.plugin,
|
|
9
|
-
prettier,
|
|
10
|
-
},
|
|
11
|
-
languageOptions: {
|
|
12
|
-
parser: typescriptEslint.parser,
|
|
13
|
-
parserOptions: {
|
|
14
|
-
project: true,
|
|
15
|
-
},
|
|
16
|
-
},
|
|
17
|
-
rules: {
|
|
18
|
-
...typescriptEslint.configs.recommended.rules,
|
|
19
|
-
...prettierConfig.rules,
|
|
20
|
-
'prettier/prettier': ['error']
|
|
21
|
-
},
|
|
22
|
-
});
|