mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-21 02:40:08 +00:00
* test: bun test * Update package.json * ci: update bun version * Update package.json * Update package.json * test * ci: update bun * chore(ci): update bun version --------- Co-authored-by: H01001000 <heiheiho000@gmail.com>
58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"outputs": ["dist/**/*.js"],
|
|
"inputs": ["src/**/*.ts"]
|
|
},
|
|
"build:type": {
|
|
"dependsOn": ["^build:type"],
|
|
"outputs": ["dist/**/*.d.ts", "dist/**/*.d.ts.map", "dist/tsconfig.tsbuildinfo"]
|
|
},
|
|
"release-build": {
|
|
"dependsOn": ["^release-build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"test:unit-coverage": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"test:unit": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"test:integration": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"test:test-type": {
|
|
"dependsOn": ["^build:type"]
|
|
},
|
|
"test:deno-unit": {
|
|
"dependsOn": ["build", "^build"],
|
|
"outputs": ["denoTestsDist/**"]
|
|
},
|
|
"test:bun-unit": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"bunTestsDist/**"
|
|
]
|
|
},
|
|
"test:e2e": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build:type"]
|
|
},
|
|
"fmt": {
|
|
"dependsOn": ["^build:type"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|