2022-02-08 11:05:56 +00:00
|
|
|
{
|
|
|
|
"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
|
|
|
|
},
|
2022-05-11 13:34:07 +00:00
|
|
|
"docs": {
|
2022-02-08 11:05:56 +00:00
|
|
|
"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": [
|
2022-03-02 14:21:14 +00:00
|
|
|
"build:packages",
|
2022-02-08 11:05:56 +00:00
|
|
|
"^build"
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
"dist/**",
|
|
|
|
".next/**"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"dependsOn": [
|
2022-02-11 21:35:24 +00:00
|
|
|
"build:packages"
|
2022-02-08 11:05:56 +00:00
|
|
|
],
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"test:ci": {
|
|
|
|
"dependsOn": [
|
|
|
|
"build"
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
"coverage/**"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"dependsOn": [
|
|
|
|
"build"
|
|
|
|
],
|
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"deploy": {
|
|
|
|
"dependsOn": [
|
|
|
|
"build",
|
|
|
|
"test"
|
|
|
|
],
|
|
|
|
"outputs": [
|
|
|
|
"dist/**",
|
|
|
|
".next/**"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|