parent
175f984709
commit
72208ba6ba
|
@ -1,5 +1,8 @@
|
|||
# 更新日志
|
||||
|
||||
## [1.1.0] 2019-01-04
|
||||
- 实时响应配置更新。
|
||||
|
||||
## [1.0.2] 2018-12-23
|
||||
- 执行优化。
|
||||
|
||||
|
|
6
index.js
6
index.js
|
@ -19,6 +19,12 @@ function activate(ctx) {
|
|||
// todo...
|
||||
})
|
||||
|
||||
vsc.workspace.onDidChangeConfiguration(_ => {
|
||||
let conf = vsc.workspace.getConfiguration('BuildSystem')
|
||||
|
||||
BuildSystem.__init__(conf)
|
||||
})
|
||||
|
||||
const build = vsc.commands.registerCommand('BuildSystem.build', _ => {
|
||||
BuildSystem.build()
|
||||
})
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "build-system",
|
||||
"displayName": "sublime build system",
|
||||
"description": "🔥 类似sublime的Build System功能, 方便快速调试一些代码片断或想法。",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"publisher": "yutent",
|
||||
"author": "Yutent [@yutent]",
|
||||
"icon": "logo.png",
|
||||
|
|
Loading…
Reference in New Issue