Skip to content

Commit f23ea15

Browse files
committed
0.2.0
1 parent 6822939 commit f23ea15

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 24 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pico8vscodeeditor",
33
"displayName": "pico8vscodeeditor",
44
"description": "VSCode editor for Pico-8 .p8 files with basic lua and pico8 api snippets.",
5-
"version": "0.1.0",
5+
"version": "0.2.0",
66
"repository": {
77
"type": "git",
88
"url": "https://github.com/grumpydev/pico8vscodeeditor"
@@ -18,7 +18,8 @@
1818
"vscode": "^1.27.0"
1919
},
2020
"categories": [
21-
"Snippets","Other"
21+
"Snippets",
22+
"Other"
2223
],
2324
"keywords": [
2425
"pico8"
@@ -72,17 +73,26 @@
7273
"category": "pico8"
7374
}
7475
],
75-
"languages": [{
76-
"id": "pico8p8",
77-
"extensions": [ ".p8" ],
78-
"aliases": [ "pico8", "p8" ],
79-
"configuration": "./language-configuration.json"
80-
}],
81-
"grammars": [{
82-
"language": "pico8p8",
83-
"scopeName": "source.p8",
84-
"path": "./syntaxes/lua.tmLanguage.json"
85-
}],
76+
"languages": [
77+
{
78+
"id": "pico8p8",
79+
"extensions": [
80+
".p8"
81+
],
82+
"aliases": [
83+
"pico8",
84+
"p8"
85+
],
86+
"configuration": "./language-configuration.json"
87+
}
88+
],
89+
"grammars": [
90+
{
91+
"language": "pico8p8",
92+
"scopeName": "source.p8",
93+
"path": "./syntaxes/lua.tmLanguage.json"
94+
}
95+
],
8696
"snippets": [
8797
{
8898
"language": "pico8p8",
@@ -129,7 +139,7 @@
129139
"path": "./snippets/pico8.json"
130140
}
131141
]
132-
},
142+
},
133143
"scripts": {
134144
"vscode:prepublish": "npm run compile",
135145
"compile": "tsc -p ./",

0 commit comments

Comments
 (0)