Skip to content

Commit

Permalink
check extension publish
Browse files Browse the repository at this point in the history
  • Loading branch information
redaphid committed Jan 11, 2025
1 parent 699705f commit b46ea35
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 37 deletions.
4 changes: 2 additions & 2 deletions vscode-extension/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

81 changes: 46 additions & 35 deletions vscode-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paper-cranes-shader-vscode-extension",
"version": "1.0.0",
"version": "1.0.1",
"publisher": "hypnodroid",
"repository": "https://github.com/hypnodroid/paper-cranes",
"readme": "README.md",
Expand All @@ -9,41 +9,52 @@
"icon": "logo.png",
"main": "./out/index.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package -o extension.vsix",
"build": "rm -rf out && npm run compile && npm run package"
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package -o extension.vsix",
"build": "rm -rf out && npm run compile && npm run package"
},
"engines": {
"vscode": "^1.93.1"
},
"categories": [
"Programming Languages"
"engines": {
"vscode": "^1.93.1"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "glsl",
"aliases": [
"GLSL",
"glsl"
],
"extensions": [
".frag",
".vert",
".glsl"
],
"configuration": "./language-configuration.json"
}
],
"contributes": {
"languages": [{
"id": "glsl",
"aliases": ["GLSL", "glsl"],
"extensions": [".frag", ".vert", ".glsl"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "glsl",
"scopeName": "source.glsl",
"path": "./syntaxes/glsl.tmLanguage.json"
}]
},
"devDependencies": {
"@types/node": "^22.x",
"@types/vscode": "^1.93.1",
"typescript": "^5.x",
"@vscode/vsce": "^3.x"
},
"files": [
"logo.png",
"out/**",
"language-configuration.json",
"LICENSE"
"grammars": [
{
"language": "glsl",
"scopeName": "source.glsl",
"path": "./syntaxes/glsl.tmLanguage.json"
}
]
},
"devDependencies": {
"@types/node": "^22.x",
"@types/vscode": "^1.93.1",
"typescript": "^5.x",
"@vscode/vsce": "^3.x"
},
"files": [
"logo.png",
"out/**",
"language-configuration.json",
"LICENSE"
]
}

0 comments on commit b46ea35

Please sign in to comment.