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-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["docs"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"build": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**", ".next/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"build:packages": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"build:core": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"build:apps": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"outputs": ["dist/**", ".next/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"build:www": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["build:packages", "^build"],
|
|
|
|
"outputs": ["dist/**", ".next/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"test": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["build:packages"],
|
2022-02-08 11:05:56 +00:00
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"test:ci": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["build"],
|
|
|
|
"outputs": ["coverage/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
},
|
|
|
|
"lint": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["build"],
|
2022-02-08 11:05:56 +00:00
|
|
|
"outputs": []
|
|
|
|
},
|
|
|
|
"clean": {
|
|
|
|
"cache": false
|
|
|
|
},
|
|
|
|
"deploy": {
|
2022-07-28 07:19:53 +00:00
|
|
|
"dependsOn": ["build", "test"],
|
|
|
|
"outputs": ["dist/**", ".next/**"]
|
2022-02-08 11:05:56 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-28 07:19:53 +00:00
|
|
|
}
|