mirror of
https://github.com/Eugeny/tabby.git
synced 2024-11-22 03:26:09 +03:00
bumped plugins, added serialport mocks
This commit is contained in:
parent
d7eeac6af7
commit
194342d6fa
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-community-color-schemes",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Community color schemes for Tabby",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-core",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Tabby core",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-electron",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Electron-specific bindings",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-linkifier",
|
||||
"version": "1.0.171-nightly.2",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Makes URLs, IPs and file paths clickable in Tabby",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-local",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Tabby's local shell plugin",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-plugin-manager",
|
||||
"version": "1.0.171-nightly.2",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Tabby's plugin manager",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-serial",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Serial connections for Tabby",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-settings",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Tabby terminal settings page",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-ssh",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "SSH connections for Tabby",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-telnet",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Telnet/socket connections for Tabby",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-terminal",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Tabby's terminal emulation core",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-web-demo",
|
||||
"version": "1.0.171-nightly.2",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"main": "dist/index.js",
|
||||
"typings": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tabby-web",
|
||||
"version": "1.0.171-nightly.1",
|
||||
"version": "1.0.171-nightly.3",
|
||||
"description": "Web-specific bindings",
|
||||
"keywords": [
|
||||
"tabby-builtin-plugin"
|
||||
|
@ -27,6 +27,9 @@ window['bootstrapTabby'] = async function bootstrap (options: BootstrapOptions):
|
||||
|
||||
const pluginModules = []
|
||||
for (const packageModule of options.packageModules) {
|
||||
if (!packageModule.default) {
|
||||
continue
|
||||
}
|
||||
const pluginModule = packageModule.default.forRoot ? packageModule.default.forRoot() : packageModule.default
|
||||
pluginModule.pluginName = packageModule.pluginName
|
||||
pluginModule.bootstrap = packageModule.bootstrap
|
||||
|
@ -20,5 +20,5 @@
|
||||
"scripts": {
|
||||
"postinstall": "patch-package"
|
||||
},
|
||||
"version": "1.0.171-nightly.2"
|
||||
"version": "1.0.171-nightly.3"
|
||||
}
|
||||
|
@ -68,6 +68,7 @@ Tabby.registerMock('tty', { isatty: () => false })
|
||||
Tabby.registerMock('child_process', {})
|
||||
Tabby.registerMock('readable-stream', {})
|
||||
Tabby.registerMock('os', {
|
||||
arch: () => 'web',
|
||||
platform: () => 'web',
|
||||
homedir: () => '/home',
|
||||
})
|
||||
@ -90,6 +91,7 @@ Tabby.registerMock('keytar', {
|
||||
getPassword: () => null,
|
||||
})
|
||||
Tabby.registerMock('@serialport/bindings', {})
|
||||
Tabby.registerMock('@serialport/bindings-cpp', {})
|
||||
|
||||
Tabby.registerModule('net', {
|
||||
Socket: SocketProxy,
|
||||
|
Loading…
Reference in New Issue
Block a user