mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 20:54:50 +03:00
603652e66b
This is done one-time (for now) using a nightly feature of cargo-fmt as defined in `rustfmt-nightly.toml.` It's planned to make this the default so imports will always be sorted. For now it can be run manually with: cargo +nightly fmt -- --config-path rustfmt-nightly.toml or pnpm rustfmt
22 lines
785 B
JSON
22 lines
785 B
JSON
{
|
|
"name": "git-butler-tauri",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "pnpm --filter @gitbutler/ui run dev",
|
|
"test": "pnpm --filter @gitbutler/ui run test",
|
|
"test:watch": "pnpm --filter @gitbutler/ui run test:watch",
|
|
"build": "pnpm --filter @gitbutler/ui run build",
|
|
"build:nightly": "pnpm --filter @gitbutler/ui run build:nightly",
|
|
"build:development": "pnpm --filter @gitbutler/ui run build:development",
|
|
"check": "pnpm --filter @gitbutler/ui run check",
|
|
"lint": "pnpm --filter @gitbutler/ui run lint",
|
|
"format": "pnpm --filter @gitbutler/ui run format",
|
|
"tauri": "tauri",
|
|
"prepare": "pnpm --filter @gitbutler/ui run prepare",
|
|
"rustfmt": "cargo +nightly fmt -- --config-path rustfmt-nightly.toml"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^1.5.11"
|
|
}
|
|
}
|