mirror of
https://github.com/xHyroM/roles-bot.git
synced 2024-11-12 20:18:06 +01:00
build: add start script
This commit is contained in:
parent
7c63c373c1
commit
e522324196
2 changed files with 25 additions and 23 deletions
|
@ -6,7 +6,8 @@
|
|||
"types": "dist/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "node scripts/build.mjs",
|
||||
"dev": "node scripts/build.mjs --dev && node dist/index.mjs"
|
||||
"dev": "node scripts/build.mjs --dev && node dist/index.mjs",
|
||||
"start": "node dist/index.mjs"
|
||||
},
|
||||
"devDependencies": {
|
||||
"esbuild": "^0.15.11",
|
||||
|
|
45
turbo.json
45
turbo.json
|
@ -1,24 +1,25 @@
|
|||
{
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"dev": {
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"dev:tunnel": {
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"preview": {
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"deploy": {
|
||||
"dependsOn": ["build", "test", "lint"]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^build"]
|
||||
}
|
||||
}
|
||||
"$schema": "https://turbo.build/schema.json",
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"dev": {
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"dev:tunnel": {
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"preview": {
|
||||
"outputs": ["dist"]
|
||||
},
|
||||
"deploy": {
|
||||
"dependsOn": ["build", "test", "lint"]
|
||||
},
|
||||
"start": {},
|
||||
"test": {
|
||||
"dependsOn": ["^build"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue