Skip to content

Commit 4254e37

Browse files
committed
3.2.1
1 parent 4e33923 commit 4254e37

File tree

5 files changed

+11
-25
lines changed

5 files changed

+11
-25
lines changed

client/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"vscode": "^1.66.0"
1414
},
1515
"dependencies": {
16-
"vscode-languageclient": "^8.0.0-next.16"
16+
"vscode-languageclient": "8.0.0-next.15"
1717
},
1818
"devDependencies": {
1919
"@types/node": "^16.4.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1752,5 +1752,5 @@
17521752
"type": "git",
17531753
"url": "https://github.com/sumneko/lua-language-server"
17541754
},
1755-
"version": "3.2.0"
1755+
"version": "3.2.1"
17561756
}

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "3.2.0"
3+
local VERSION = "3.2.1"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

publish.lua

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,6 @@ local function loadPackage()
2626
return package.version
2727
end
2828

29-
local function updateNodeModules(out, postinstall)
30-
local current = fs.current_path()
31-
fs.current_path(out)
32-
local cmd = io.popen(postinstall)
33-
for line in cmd:lines 'l' do
34-
print(line)
35-
end
36-
local suc = cmd:close()
37-
if not suc then
38-
error('更新NodeModules失败!')
39-
end
40-
fs.current_path(current)
41-
end
42-
4329
local function createDirectory(version)
4430
local out = ROOT / 'publish' / version
4531
fs.create_directories(out)

0 commit comments

Comments
 (0)