mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
Some checks are pending
tinymist::auto_tag / auto-tag (push) Waiting to run
tinymist::ci / Duplicate Actions Detection (push) Waiting to run
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Waiting to run
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Waiting to run
tinymist::ci / prepare-build (push) Waiting to run
tinymist::ci / announce (push) Blocked by required conditions
tinymist::ci / build (push) Blocked by required conditions
tinymist::gh_pages / build-gh-pages (push) Waiting to run
43 lines
918 B
JavaScript
43 lines
918 B
JavaScript
import * as build from "./builders.mjs";
|
|
|
|
if (process.argv.includes("build:l10n")) {
|
|
await build.buildL10n();
|
|
}
|
|
|
|
if (process.argv.includes("build:syntax")) {
|
|
await build.buildSyntax();
|
|
}
|
|
|
|
if (process.argv.includes("build:preview")) {
|
|
await build.buildPreview();
|
|
}
|
|
|
|
if (process.argv.includes("build:editor-tools")) {
|
|
await build.buildEditorTools();
|
|
}
|
|
|
|
if (process.argv.includes("build:vscode:web")) {
|
|
await build.buildTinymistVscodeWeb();
|
|
}
|
|
|
|
if (process.argv.includes("build:vscode:system")) {
|
|
await build.buildTinymistVscodeSystem();
|
|
}
|
|
|
|
if (process.argv.includes("build:lsp:debug")) {
|
|
await build.buildDebugLspBinary();
|
|
}
|
|
|
|
if (process.argv.includes("prelaunch:vscode")) {
|
|
await build.prelaunchVscode();
|
|
}
|
|
|
|
if (process.argv.includes("build:web:base")) {
|
|
await build.buildWebLspBinaryBase();
|
|
}
|
|
|
|
if (process.argv.includes("build:web")) {
|
|
await build.buildTinymistVscodeWeb();
|
|
}
|
|
|
|
// build:editor-tools
|