- Add cross-platform build workflow for macOS, Windows, Linux - Add CI workflow with Rust code quality checks - Add manual release workflow with automatic asset publishing - Add dependency management workflow with security monitoring - Update README with build status badges - Remove unused Prettier/ESLint configurations - Focus on Rust code quality and build verification
39 lines
579 B
JSON
39 lines
579 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "dev",
|
|
"type": "shell",
|
|
"isBackground": true,
|
|
"command": "pnpm",
|
|
"args": [
|
|
"tauri",
|
|
"dev"
|
|
],
|
|
"options": {
|
|
"env": {
|
|
"RUST_LOG": "info"
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"label": "ui:dev",
|
|
"type": "shell",
|
|
"isBackground": true,
|
|
"command": "pnpm",
|
|
"args": [
|
|
"dev"
|
|
]
|
|
},
|
|
{
|
|
"label": "ui:build",
|
|
"type": "shell",
|
|
"command": "pnpm",
|
|
"args": [
|
|
"build"
|
|
]
|
|
}
|
|
]
|
|
} |