mirror of
https://github.com/vercel/flags.git
synced 2026-09-19 03:49:23 +08:00
cf532daf20
* (flags) remove index from exports * Update tsup.config, use clean:true instead of rimraf * Add changeset * pnpm-lock * update tsup config, remove unused provider entrypoints * tsup.config: update entry format * Add attw check in CI * Update .changeset/tidy-schools-retire.md --------- Co-authored-by: Dominik Ferber <dominik.ferber@gmail.com>
42 lines
874 B
JSON
42 lines
874 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [".env", ".env.local", ".env.development.local"],
|
|
"tasks": {
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"env": ["EDGE_CONFIG", "FLAGS_SECRET"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"type-check": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"attw": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"start": {
|
|
"dependsOn": ["^start"]
|
|
},
|
|
"test:e2e": {
|
|
"dependsOn": ["^build", "^start"],
|
|
"env": ["FLAGS_SECRET"]
|
|
},
|
|
"publint": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"prettier-check": {}
|
|
}
|
|
}
|