mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
feat: adding standard scripts for lint and format check (#7326)
* feat: adding standard scripts for lint and format check * fix: update packages scripts * fix: adding tsup config to utils package * chore: updated build scripts in logger pacakge
This commit is contained in:
committed by
GitHub
parent
f2a87e8f15
commit
ba884d1e4d
35
turbo.json
35
turbo.json
@@ -24,23 +24,38 @@
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [".next/**", "dist/**"]
|
||||
},
|
||||
"develop": {
|
||||
"cache": false,
|
||||
"persistent": true,
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"dev": {
|
||||
"cache": false,
|
||||
"persistent": true,
|
||||
"dependsOn": ["^build"]
|
||||
"persistent": true
|
||||
},
|
||||
"check:types": {
|
||||
"dependsOn": ["^build"],
|
||||
"cache": false
|
||||
},
|
||||
"check:lint": {
|
||||
"cache": false
|
||||
},
|
||||
"check:format": {
|
||||
"cache": false
|
||||
},
|
||||
"check": {
|
||||
"dependsOn": ["check:format", "check:lint", "check:types"],
|
||||
"cache": false
|
||||
},
|
||||
"fix:lint": {
|
||||
"cache": false
|
||||
},
|
||||
"fix:format": {
|
||||
"cache": false
|
||||
},
|
||||
"fix": {
|
||||
"dependsOn": ["fix:format", "fix:lint"],
|
||||
"cache": false
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": []
|
||||
},
|
||||
"lint": {
|
||||
"outputs": []
|
||||
},
|
||||
"start": {
|
||||
"cache": false
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user