1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-09-20 09:27:16 +03:00

added xkeyring dep

This commit is contained in:
Eugene Pankov 2017-11-18 22:41:13 +01:00
parent 3673542197
commit a280658bbb
5 changed files with 6 additions and 6 deletions

View File

@ -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": {

View File

@ -82,6 +82,7 @@
"libappindicator1",
"libxtst6",
"libnss3",
"python-gnomekeyring",
"tmux"
],
"artifactName": "terminus-${version}-${os}-${arch}.deb"

View File

@ -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)

View File

@ -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

View File

@ -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