提交 07792c22 编写于 作者: E Eugene Pankov

build re-fix

上级 d1e3f282
......@@ -29,7 +29,7 @@
"mz": "^2.6.0",
"ngx-toastr": "^8.7.3",
"path": "0.12.7",
"rxjs": "^6.1.0",
"rxjs": "^6.3.3",
"yargs": "^12.0.1",
"zone.js": "~0.8.26"
},
......
......@@ -426,9 +426,9 @@ require-main-filename@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
rxjs@^6.1.0:
version "6.1.0"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.1.0.tgz#833447de4e4f6427b9cec3e5eb9f56415cd28315"
rxjs@^6.3.3:
version "6.3.3"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55"
dependencies:
tslib "^1.9.0"
......
......@@ -48,16 +48,16 @@ export class WSLShellProvider extends ShellProvider {
}
}
for (let child of Object.values(lxss)) {
if (!child.$values) {
if (!(child as any).$values) {
continue
}
let name = child.$values.distributionname
let name = (child as any).$values.distributionname
shells.push({
id: `wsl-${name}`,
name: `WSL / ${name}`,
command: wslPath,
args: ['-d', name],
fsBase: child.$values.basepath,
fsBase: (child as any).$values.basepath,
env: {
TERM: 'xterm-color',
COLORTERM: 'truecolor',
......
......@@ -20,7 +20,8 @@
"es5",
"es6",
"es7",
"es2015"
"es2015",
"es2017"
]
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册