Skip to content

Commit ff2cb5a

Browse files
Merge pull request #85 from Chia-Network/20240301-dev-update
Update container, runner and test code from main. includes dependency updates.
2 parents 67406c6 + a46e40d commit ff2cb5a

15 files changed

+5341
-3039
lines changed

package-lock.json

+1,220-699
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+35-28
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"name": "chialisp-dev",
3-
"displayName": "Chialisp Dev",
2+
"name": "chialisp",
3+
"displayName": "Chialisp",
44
"icon": "images/chialisp.png",
5-
"description": "A Rust LSP and client for Chialisp",
5+
"description": "A Rust LSP client for Chialisp",
66
"publisher": "ChiaNetwork",
7-
"version": "1.0.1",
7+
"version": "1.0.0",
88
"engines": {
9-
"vscode": "^1.70.0"
9+
"vscode": "^1.85.0"
1010
},
1111
"categories": [
1212
"Programming Languages"
1313
],
1414
"repository": "https://github.com/Chia-Network/vscode-chialisp-lsp",
1515
"activationEvents": [
1616
"onLanguage:chialisp",
17-
"onCommand:chialisp-dev.startDebug",
17+
"onCommand:chialisp.startDebug",
1818
"onDebug"
1919
],
2020
"contributes": {
@@ -54,34 +54,41 @@
5454
],
5555
"commands": [
5656
{
57-
"command": "chialisp-dev.locateIncludePath",
57+
"command": "chialisp.locateIncludePath",
5858
"title": "Locate include file",
5959
"category": "Chialisp"
6060
},
6161
{
62-
"command": "chialisp-dev.startDebug",
62+
"command": "chialisp.startDebug",
6363
"title": "Start Chialisp Debug"
6464
}
6565
],
6666
"menus": {
6767
"explorer/context": [
6868
{
6969
"when": "resourceFilename =~ /\\.clsp$/ || resourceFilename =~ /\\.clvm$/",
70-
"command": "chialisp-dev.startDebug"
70+
"command": "chialisp.startDebug"
7171
}
7272
]
7373
},
74-
"breakpoints":[
75-
{"language":"Chialisp"},
76-
{"language":"chialisp"}
74+
"breakpoints": [
75+
{
76+
"language": "Chialisp"
77+
},
78+
{
79+
"language": "chialisp"
80+
}
7781
],
78-
"debuggers":[
82+
"debuggers": [
7983
{
80-
"type":"chialisp-dev",
81-
"label":"chialisp debugger",
82-
"languages":["Chialisp", "chialisp"],
83-
"configurationAttributes":{
84-
"launch":{
84+
"type": "chialisp",
85+
"label": "chialisp debugger",
86+
"languages": [
87+
"Chialisp",
88+
"chialisp"
89+
],
90+
"configurationAttributes": {
91+
"launch": {
8592
"required": [
8693
"program"
8794
]
@@ -112,20 +119,20 @@
112119
"test": "node ./out/test/runTest.js"
113120
},
114121
"dependencies": {
115-
"vscode-languageclient": "^7.0.0"
122+
"vscode-languageclient": "^8.1.0"
116123
},
117124
"devDependencies": {
118-
"@types/glob": "^7.2.0",
125+
"@types/glob": "^8.1.0",
119126
"@types/mocha": "^9.1.1",
120-
"@types/node": "16.x",
121-
"@types/vscode": "^1.70.0",
122-
"@typescript-eslint/eslint-plugin": "^5.31.0",
123-
"@typescript-eslint/parser": "^5.31.0",
127+
"@types/node": "20.1.3",
128+
"@types/vscode": "^1.85.0",
129+
"@typescript-eslint/eslint-plugin": "^5.59.5",
130+
"@typescript-eslint/parser": "^5.59.5",
124131
"@vscode/test-electron": "^2.1.5",
125-
"eslint": "^8.20.0",
126-
"glob": "^8.0.3",
132+
"@vscode/vsce": "2.23.0",
133+
"eslint": "^8.40.0",
134+
"glob": "^10.2.3",
127135
"mocha": "^10.0.0",
128-
"typescript": "^4.7.4",
129-
"vsce": "^2.11.0"
136+
"typescript": "^5.0.4"
130137
}
131138
}

0 commit comments

Comments
 (0)