mirror of
https://github.com/ivabus/gui
synced 2025-04-23 14:07:14 +03:00
bump v0.0.34
This commit is contained in:
parent
b84e6ca37a
commit
0163d30b28
3 changed files with 6 additions and 4 deletions
3
modules/desktop/.gitignore
vendored
3
modules/desktop/.gitignore
vendored
|
@ -9,4 +9,5 @@ node_modules
|
|||
coverage/*
|
||||
dist/*
|
||||
electron/dist/*
|
||||
electron/package.json
|
||||
electron/package.json
|
||||
external
|
|
@ -46,6 +46,7 @@ export async function initializeTeaCli(): Promise<string> {
|
|||
}
|
||||
}
|
||||
|
||||
export default async function initialize() {
|
||||
await Promise.all([initializeTeaCli(), createInitialSessionFile()]);
|
||||
export default async function initialize(): Promise<string> {
|
||||
const [version] = await Promise.all([initializeTeaCli(), createInitialSessionFile()]);
|
||||
return version;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tea",
|
||||
"version": "0.0.33",
|
||||
"version": "0.0.34",
|
||||
"private": true,
|
||||
"description": "tea gui app",
|
||||
"author": "tea.xyz",
|
||||
|
|
Loading…
Reference in a new issue