mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
Typechecking the vscode project needs a wasm build of slint so the types are generated. This stop that so autofix should now run in ~1 minute. If this works the next stage will be to run autofix before all other jobs and only kick them off once its successful. The reason for this is we only have 20 runners. Autofix and the normal ci.yaml jobs start. This takes up 10 to 15 runners. After 5-6 mins autofix often finds a problem. Makes a new commit and now the other ~15 jobs need to be cancelled. So in theory we can reduce pointless jobs running.
22 lines
627 B
JSON
22 lines
627 B
JSON
{
|
|
"name": "slint_repository",
|
|
"version": "1.15.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"format": "biome format biome.json && pnpm --stream -r format",
|
|
"format:fix": "biome format biome.json --write && pnpm --stream -r format:fix",
|
|
"lint": "pnpm --stream -r lint",
|
|
"lint:fix": "pnpm --stream -r lint:fix",
|
|
"type-check": "pnpm --stream -r type-check",
|
|
"type-check:ci": "pnpm --stream --filter '!./editors/vscode' -r type-check"
|
|
},
|
|
"packageManager": "pnpm@10.18.2",
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"@biomejs/biome",
|
|
"esbuild",
|
|
"sharp"
|
|
]
|
|
}
|
|
}
|