1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-28 12:28:33 +00:00
Files
.github
.vscode
app
build
docs
extras
locale
patches
scripts
build-docs.mjs
build-linux.mjs
build-macos.mjs
build-modules.mjs
build-native.mjs
build-typings.mjs
build-windows.mjs
generate-icon-metadata.mjs
i18n-extract.mjs
install-deps.mjs
prepackage-plugins.mjs
publish-plugins.mjs
sentry-upload.mjs
vars.mjs
snap
tabby-community-color-schemes
tabby-core
tabby-electron
tabby-linkifier
tabby-local
tabby-plugin-manager
tabby-serial
tabby-settings
tabby-ssh
tabby-telnet
tabby-terminal
tabby-uac
tabby-web
tabby-web-demo
web
.all-contributorsrc
.editorconfig
.env
.eslintrc.yml
.gitignore
.mergify.yml
.pug-lintrc.js
CODE_OF_CONDUCT.md
HACKING.md
LICENSE
README.de-DE.md
README.es-ES.md
README.id-ID.md
README.it-IT.md
README.ja-JP.md
README.ko-KR.md
README.md
README.pt-BR.md
README.ru-RU.md
README.zh-CN.md
electron-builder.yml
firebase.json
package.json
tsconfig.json
typedoc.mjs
webpack.config.mjs
webpack.plugin.config.mjs
yarn.lock
tabby/scripts/build-typings.mjs
Eugene 1e5cfd1d4b bootstrap 5 WIP ()
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
2023-02-26 20:42:31 +01:00

10 lines
264 B
JavaScript
Executable File

#!/usr/bin/env node
import sh from 'shelljs'
import * as vars from './vars.mjs'
import log from 'npmlog'
vars.builtinPlugins.forEach(plugin => {
log.info('typings', plugin)
sh.exec(`yarn tsc --project ${plugin}/tsconfig.typings.json`, { fatal: true })
})