mirror of
https://github.com/EthanShoeDev/fressh.git
synced 2026-01-11 14:22:51 +00:00
21 lines
418 B
JSON
21 lines
418 B
JSON
{
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
// Default overrides
|
|
"build": {
|
|
"dependsOn": ["build:internal", "build:main"],
|
|
},
|
|
|
|
// Special tasks
|
|
"build:main": {
|
|
"inputs": ["src/**", "vite.config.ts"],
|
|
"dependsOn": ["build:internal"],
|
|
"outputs": ["dist/**"],
|
|
},
|
|
"build:internal": {
|
|
"inputs": ["src-internal/**", "index.html", "vite.config.internal.ts"],
|
|
"outputs": ["dist-internal/**"],
|
|
},
|
|
},
|
|
}
|