1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-07-19 09:59:54 +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
.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/generate-icon-metadata.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

18 lines
539 B
JavaScript
Executable File

#!/usr/bin/env node
import jsYaml from 'js-yaml'
import fs from 'node:fs'
import path from 'node:path'
import * as url from 'url'
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
const metadata = jsYaml.load(fs.readFileSync(path.resolve(__dirname, '../node_modules/@fortawesome/fontawesome-free/metadata/icons.yml')))
let result = {}
for (let key in metadata) {
result[key] = metadata[key].styles.map(x => x[0])
}
fs.writeFileSync(path.resolve(__dirname, '../tabby-core/src/icons.json'), JSON.stringify(result))