Files
Aaron Morris cf532daf20 Update flags package json (#62)
* (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>
2025-02-14 09:45:24 +02:00

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": {}
}
}