mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-11-01 00:53:23 +01:00
Ref: - https://docs.docker.com/dhi/core-concepts/digests/ - https://github.com/goldbergyoni/nodebestpractices/blob/master/sections/docker/image-tags.md - https://emmer.dev/blog/what-is-a-docker-digest/
47 lines
1018 B
JSON
47 lines
1018 B
JSON
{
|
|
"$schema": "./node_modules/turbo/schema.json",
|
|
"noUpdateNotifier": true,
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"build": {
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"env": ["IS_STANDALONE"],
|
|
"dependsOn": ["^build"],
|
|
"outputs": [
|
|
"build/**",
|
|
"storybook-static/**",
|
|
".next/**",
|
|
"!.next/cache/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^test"],
|
|
"outputs": []
|
|
},
|
|
"lint:eslint-transit-node": {
|
|
"dependsOn": ["^lint:eslint-transit-node"]
|
|
},
|
|
"lint:eslint": {
|
|
"dependsOn": ["lint:eslint-transit-node"]
|
|
},
|
|
"lint:typescript-transit-node": {
|
|
"dependsOn": ["^lint:typescript-transit-node"]
|
|
},
|
|
"lint:typescript": {
|
|
"dependsOn": ["typegen", "lint:typescript-transit-node"]
|
|
},
|
|
"typegen": {
|
|
"dependsOn": ["^typegen"],
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"start": {
|
|
"dependsOn": ["build"],
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|