1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
local fs = require 'bee.filesystem'
local subprocess = require 'bee.subprocess'
ROOT = fs.current_path()
EXTENSION = ROOT:parent_path()
package.path = (ROOT / 'src' / '?.lua'):string()
.. ';' .. (ROOT / 'src' / '?' / 'init.lua'):string()
require 'utility'
local json = require 'json'
local function loadPackage()
local buf = io.load(EXTENSION / 'package.json')
local package = json.decode(buf)
return package.version, package.scripts.postinstall
end
local function updateNodeModules(out, postinstall)
local current = fs.current_path()
fs.current_path(out)
local cmd = io.popen(postinstall)
for line in cmd:lines 'l' do
print(line)
end
fs.current_path(current)
end
local function createDirectory(version)
local out = EXTENSION / 'publish' / version / 'lua-language-server'
fs.create_directories(out)
return out
end
local function copyFiles(root, out)
return function (dirs)
local count = 0
local function copy(relative, mode)
local source = root / relative
local target = out / relative
if not fs.exists(source) then
error('文件不存在: ' .. tostring(source))
return
end
if fs.is_directory(source) then
fs.create_directory(target)
if mode == true then
for path in source:list_directory() do
copy(relative / path:filename(), true)
end
else
for name, v in pairs(mode) do
copy(relative / name, v)
end
end
else
fs.copy_file(source, target)
count = count + 1
end
end
copy(fs.path '', dirs)
return count
end
end
local function runTest(root)
local exe = root / 'bin' / 'lua.exe'
local test = root / 'test' / 'main.lua'
local lua = subprocess.spawn {
exe,
test,
'-E',
stdout = true,
stderr = true,
}
for line in lua.stdout:lines 'l' do
print(line)
end
lua:wait()
local err = lua.stderr:read 'a'
if err ~= '' then
error(err)
end
end
local function removeFiles(out)
return function (dirs)
local function remove(relative, mode)
local target = out / relative
if not fs.exists(target) then
return
end
if fs.is_directory(target) then
if mode == true then
for path in target:list_directory() do
remove(relative / path:filename(), true)
end
fs.remove(target)
else
for name, v in pairs(mode) do
remove(relative / name, v)
end
end
else
fs.remove(target)
end
end
remove(fs.path '', dirs)
end
end
local version, postinstall = loadPackage()
print('版本号为:' .. version)
local out = createDirectory(version)
print('清理目录...')
removeFiles(out)(true)
print('开始复制文件...')
local count = copyFiles(EXTENSION , out) {
['client'] = {
['out'] = true,
['package-lock.json'] = true,
['package.json'] = true,
['tsconfig.json'] = true,
},
['server'] = {
['bin'] = true,
['libs'] = true,
['locale'] = true,
['src'] = true,
['test'] = true,
['main.lua'] = true,
},
['package-lock.json'] = true,
['package.json'] = true,
['README.md'] = true,
['tsconfig.json'] = true,
}
print(('复制了[%d]个文件'):format(count))
print('更新NodeModules...')
updateNodeModules(out, postinstall)
print('开始测试...')
runTest(out / 'server')
print('删除多余文件...')
removeFiles(out) {
['server'] = {
['log'] = true,
['test'] = true,
['bin'] = {
['debugger.dll'] = true,
},
},
}
local path = EXTENSION / 'publish' / 'lua-language-server'
print('清理发布目录...')
removeFiles(path)(true)
print('复制到发布目录...')
local count = copyFiles(out, path)(true)
print(('复制了[%d]个文件'):format(count))
print('完成')
|