mirror of
https://github.com/Eugeny/tabby.git
synced 2025-07-25 04:48:09 +00:00
.github
.vscode
app
build
docs
extras
patches
scripts
build-linux.js
build-macos.js
build-modules.js
build-native.js
build-typings.js
build-windows.js
generate-icon-metadata.js
install-deps.js
prepackage-plugins.js
publish-plugins.js
sentry-upload.js
vars.js
snap
tabby-community-color-schemes
tabby-core
tabby-electron
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
.eslintrc.yml
.gitignore
.mergify.yml
.pug-lintrc.js
CODE_OF_CONDUCT.md
HACKING.md
LICENSE
README.ko-KR.md
README.md
appveyor.yml
electron-builder.yml
firebase.json
package.json
tsconfig.json
typedoc.js
webpack.config.js
webpack.plugin.config.js
yarn.lock
10 lines
252 B
JavaScript
Executable File
10 lines
252 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
const sh = require('shelljs')
|
|
const vars = require('./vars')
|
|
const log = require('npmlog')
|
|
|
|
vars.builtinPlugins.forEach(plugin => {
|
|
log.info('typings', plugin)
|
|
sh.exec(`npx tsc --project ${plugin}/tsconfig.typings.json`)
|
|
})
|