Skip to content

Commit f408d99

Browse files
authored
Merge pull request #32 from CodinGame/fix-release
Fix release config
2 parents 4b80d29 + 27f5b48 commit f408d99

File tree

7 files changed

+2861
-6980
lines changed

7 files changed

+2861
-6980
lines changed
File renamed without changes.

.github/workflows/check_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
name: Lint commits
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
# we actually need "github.event.pull_request.commits + 1" commit
1515
fetch-depth: 0
16-
- uses: actions/setup-node@v3
16+
- uses: actions/setup-node@v4
1717
- run: npm ci
1818
- run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose
1919
check:
@@ -22,11 +22,11 @@ jobs:
2222

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828
- name: Setup Node.js
29-
uses: actions/setup-node@v3
29+
uses: actions/setup-node@v4
3030
with:
3131
node-version: 20.10.0
3232
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
- name: Setup Node.js
14-
uses: actions/setup-node@v3
14+
uses: actions/setup-node@v4
1515
with:
1616
node-version: 20.10.0
1717
- name: Install dependencies

commitlint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module.exports = {
1+
export default {
22
extends: ['@codingame/commitlint-config-codingame']
33
};

package-lock.json

Lines changed: 2843 additions & 6953 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
"name": "@codingame/monaco-languageclient-react",
33
"version": "0.0.0-semantic-release",
44
"description": "Monaco Editor React component",
5+
"type": "module",
6+
"release": {
7+
"extends": "@codingame/semantic-release-config-github"
8+
},
59
"scripts": {
610
"build": "npm run lint && npm run compile",
711
"compile": "tsc",
@@ -19,24 +23,24 @@
1923
],
2024
"types": "dist/index.d.ts",
2125
"dependencies": {
22-
"@codingame/monaco-languageclient-wrapper": "^5.0.1",
26+
"@codingame/monaco-languageclient-wrapper": "^5.0.4",
2327
"@rehooks/local-storage": "^2.4.5",
2428
"activity-detector": "^3.0.0",
2529
"react": ">=18.2.0",
2630
"uuid": "^9.0.1"
2731
},
2832
"devDependencies": {
29-
"@codingame/commitlint-config-codingame": "^1.0.7",
33+
"@codingame/commitlint-config-codingame": "^1.0.10",
3034
"@codingame/eslint-config": "^1.1.10",
3135
"@codingame/eslint-config-react": "^1.0.2",
32-
"@codingame/semantic-release-config": "^1.3.5",
36+
"@codingame/semantic-release-config-github": "^1.0.0",
3337
"@codingame/tsconfig": "^1.1.1",
34-
"@commitlint/cli": "^18.6.0",
38+
"@commitlint/cli": "^18.6.1",
3539
"@types/deep-equal": "^1.0.4",
3640
"@types/react": "18.2.55",
3741
"@types/uuid": "^9.0.8",
38-
"@typescript-eslint/eslint-plugin": "6.21.0",
39-
"@typescript-eslint/parser": "6.21.0",
42+
"@typescript-eslint/eslint-plugin": "7.0.1",
43+
"@typescript-eslint/parser": "7.0.1",
4044
"babel-eslint": "10.1.0",
4145
"conventional-changelog-conventionalcommits": "^7.0.2",
4246
"eslint": "8.56.0",
@@ -57,4 +61,4 @@
5761
"node": "20.10.0",
5862
"npm": "10.4.0"
5963
}
60-
}
64+
}

release.config.js

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)