Skip to content

Commit

Permalink
chore: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RitikShah committed Jun 27, 2024
1 parent 2f106b2 commit b977a3f
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ jobs:
- name: Push version number to repo
if: startsWith(github.ref, 'refs/tags/')
run: |
jq '.version = "${{ steps.version.outputs.v }}"' package.json > package.json
jq '.version = "0.7.8"' package.json > package.json.tmp
mv package.json.tmp package.json
git config --global user.name "github-actions"
git config --global user.email "[email protected]"
git add package.json
Expand Down
46 changes: 46 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "syntax-mcfunction",
"publisher": "MinecraftCommands",
"displayName": "syntax-mcfunction",
"description": "Syntax highlighting for mcfunction files (Last Updated: 1.21)",
"icon": "icon.png",
"author": "MinecraftCommands",
"version": "0.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MinecraftCommands/syntax-mcfunction"
},
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "mcfunction",
"aliases": [
"mcfunction",
"mcf",
"MCF"
],
"extensions": [
".mcfunction"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "mcfunction",
"scopeName": "source.mcfunction",
"path": "./mcfunction.tmLanguage.json"
}
]
},
"devDependencies": {
"js-yaml": "^4.1.0"
}
}

0 comments on commit b977a3f

Please sign in to comment.