Skip to content

Commit e65332a

Browse files
committed
拡張機能をインストールはできる
1 parent 5525f9e commit e65332a

3 files changed

Lines changed: 127 additions & 85 deletions

File tree

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish Extension
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 20
17+
18+
- run: npm ci
19+
20+
- run: npx vsce publish -p ${{ secrets.VSCE_PAT }}

package-lock.json

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

package.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"displayName": "MC Mod Utility",
44
"description": "Scaffold Minecraft mod projects and add components for Forge, Fabric, and NeoForge",
55
"version": "0.1.0",
6+
"publisher": "MC-Mod-Utility",
7+
"repository": {
8+
"type": "git",
9+
"url": ""
10+
},
611
"engines": {
712
"vscode": "^1.109.0"
813
},
@@ -32,9 +37,13 @@
3237
"@types/mocha": "^10.0.10",
3338
"@types/node": "22.x",
3439
"@types/vscode": "^1.109.0",
35-
"@vscode/test-cli": "^0.0.12",
40+
"@vscode/test-cli": "^0.0.11",
3641
"@vscode/test-electron": "^2.5.2",
3742
"@vscode/vsce": "^3.7.1",
3843
"eslint": "^9.39.3"
44+
},
45+
"overrides": {
46+
"serialize-javascript": ">=7.0.3",
47+
"diff": ">=8.0.3"
3948
}
4049
}

0 commit comments

Comments
 (0)