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 d97e864 commit aaa9143
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ jobs:
npm install -g js-yaml
npm install -g ovsx
- name: "Setup jq"
uses: dcarbone/install-jq-action@v2
with:
version: 1.7
force: true

# ---------------------------------------------
# ----- generate files -----
# ---------------------------------------------
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 aaa9143

Please sign in to comment.