* Change npm registry to nexus for CI test * Change npm registry to nexus for CI test * Add yarn.lock * Remove clean step * Revert to disable yarn.lock file * Turn NPM Proxy to env --------- Co-authored-by: Hien To <tominhhien97@gmail.com>
18 lines
304 B
JSON
18 lines
304 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build:publish": {
|
|
"dependsOn": ["build"],
|
|
"outputs": ["**.tgz"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"type-check": {}
|
|
}
|
|
}
|