e1fb9a8250
* add lask for packages * Add turbo * remove custom scripts * update turbo scripts * Improve scripts, update changelogs * update action to use turbo * Update .gitignore * Update main.yml * Update main.yml * Update main.yml * Add docs * add clean
111 lines
No EOL
1.6 KiB
JSON
111 lines
No EOL
1.6 KiB
JSON
{
|
|
"npmClient": "yarn",
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"start": {
|
|
"cache": false
|
|
},
|
|
"start:packages": {
|
|
"cache": false
|
|
},
|
|
"start:core": {
|
|
"cache": false
|
|
},
|
|
"start:apps": {
|
|
"cache": false
|
|
},
|
|
"start:www": {
|
|
"cache": false
|
|
},
|
|
"start:electron": {
|
|
"cache": false
|
|
},
|
|
"start:vscode": {
|
|
"cache": false
|
|
},
|
|
"typedoc": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"docs"
|
|
]
|
|
},
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"build:packages": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"build:core": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**"
|
|
]
|
|
},
|
|
"build:apps": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"build:www": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"test:ci": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": [
|
|
"coverage/**"
|
|
]
|
|
},
|
|
"lint": {
|
|
"dependsOn": [
|
|
"build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"deploy": {
|
|
"dependsOn": [
|
|
"build",
|
|
"test"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
}
|
|
}
|
|
} |