mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-27 14:59:57 +00:00
build re-fix
This commit is contained in:
parent
d1e3f282a1
commit
07792c227e
@ -29,7 +29,7 @@
|
|||||||
"mz": "^2.6.0",
|
"mz": "^2.6.0",
|
||||||
"ngx-toastr": "^8.7.3",
|
"ngx-toastr": "^8.7.3",
|
||||||
"path": "0.12.7",
|
"path": "0.12.7",
|
||||||
"rxjs": "^6.1.0",
|
"rxjs": "^6.3.3",
|
||||||
"yargs": "^12.0.1",
|
"yargs": "^12.0.1",
|
||||||
"zone.js": "~0.8.26"
|
"zone.js": "~0.8.26"
|
||||||
},
|
},
|
||||||
|
@ -426,9 +426,9 @@ require-main-filename@^1.0.1:
|
|||||||
version "1.0.1"
|
version "1.0.1"
|
||||||
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1"
|
||||||
|
|
||||||
rxjs@^6.1.0:
|
rxjs@^6.3.3:
|
||||||
version "6.1.0"
|
version "6.3.3"
|
||||||
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.1.0.tgz#833447de4e4f6427b9cec3e5eb9f56415cd28315"
|
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55"
|
||||||
dependencies:
|
dependencies:
|
||||||
tslib "^1.9.0"
|
tslib "^1.9.0"
|
||||||
|
|
||||||
|
@ -48,16 +48,16 @@ export class WSLShellProvider extends ShellProvider {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
for (let child of Object.values(lxss)) {
|
for (let child of Object.values(lxss)) {
|
||||||
if (!child.$values) {
|
if (!(child as any).$values) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
let name = child.$values.distributionname
|
let name = (child as any).$values.distributionname
|
||||||
shells.push({
|
shells.push({
|
||||||
id: `wsl-${name}`,
|
id: `wsl-${name}`,
|
||||||
name: `WSL / ${name}`,
|
name: `WSL / ${name}`,
|
||||||
command: wslPath,
|
command: wslPath,
|
||||||
args: ['-d', name],
|
args: ['-d', name],
|
||||||
fsBase: child.$values.basepath,
|
fsBase: (child as any).$values.basepath,
|
||||||
env: {
|
env: {
|
||||||
TERM: 'xterm-color',
|
TERM: 'xterm-color',
|
||||||
COLORTERM: 'truecolor',
|
COLORTERM: 'truecolor',
|
||||||
|
@ -20,7 +20,8 @@
|
|||||||
"es5",
|
"es5",
|
||||||
"es6",
|
"es6",
|
||||||
"es7",
|
"es7",
|
||||||
"es2015"
|
"es2015",
|
||||||
|
"es2017"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user