mirror of
https://github.com/Eugeny/tabby.git
synced 2025-03-31 15:50:28 +08:00
added xkeyring dep
This commit is contained in:
parent
3673542197
commit
a280658bbb
@ -29,6 +29,7 @@
|
||||
"mz": "^2.6.0",
|
||||
"path": "0.12.7",
|
||||
"rxjs": "5.3.0",
|
||||
"xkeychain": "0.0.6",
|
||||
"zone.js": "0.8.12"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -82,6 +82,7 @@
|
||||
"libappindicator1",
|
||||
"libxtst6",
|
||||
"libnss3",
|
||||
"python-gnomekeyring",
|
||||
"tmux"
|
||||
],
|
||||
"artifactName": "terminus-${version}-${os}-${arch}.deb"
|
||||
|
@ -3,7 +3,5 @@ const rebuild = require('electron-rebuild').default
|
||||
const path = require('path')
|
||||
const vars = require('./vars')
|
||||
|
||||
let buildPath = path.resolve(__dirname, '../terminus-terminal')
|
||||
rebuild(buildPath, vars.electronVersion, process.arch, [], true).then(() => {
|
||||
console.log('Done')
|
||||
})
|
||||
rebuild(path.resolve(__dirname, '../app'), vars.electronVersion, process.arch, [], true)
|
||||
rebuild(path.resolve(__dirname, '../terminus-terminal'), vars.electronVersion, process.arch, [], true)
|
||||
|
@ -15,5 +15,5 @@ exports.builtinPlugins = [
|
||||
'terminus-community-color-schemes',
|
||||
'terminus-plugin-manager',
|
||||
]
|
||||
exports.nativeModules = ['node-pty-tmp', 'font-manager']
|
||||
exports.nativeModules = ['node-pty-tmp', 'font-manager', 'xkeychain']
|
||||
exports.electronVersion = pkgInfo.devDependencies.electron
|
||||
|
@ -1,6 +1,6 @@
|
||||
import { Component } from '@angular/core'
|
||||
|
||||
export declare type ComponentType = new (...args: any[]) => Component
|
||||
export declare type ComponentType = new (...args: any[]) => any
|
||||
|
||||
export abstract class SettingsTabProvider {
|
||||
id: string
|
||||
|
Loading…
x
Reference in New Issue
Block a user