chore: rename release target

Getting Rusty up in here...
This commit is contained in:
Rodney, Tiara 2025-04-25 17:27:15 +02:00
parent 41cfd89bcb
commit fcda3b1952
No known key found for this signature in database
GPG key ID: 5CD8EC1D46106723
2 changed files with 4 additions and 4 deletions

View file

@ -22,13 +22,13 @@
},
"scripts": {
"test": "jest",
"build": "npm run build:production",
"build:production": "tsc",
"build": "npm run build:release",
"build:release": "tsc",
"build:debug": "tsc -p tsconfig.debug.json",
"watch": "npm run watch:debug",
"watch:debug": "npm run build:debug -- --watch",
"doc": "typedoc --entryPoints src/index.ts --html build/doc",
"mypublish": "ts-node -P tsconfig.node.json scripts/publish.ts",
"dist": "ts-node -P tsconfig.node.json scripts/pack.ts build/production dist"
"dist": "ts-node -P tsconfig.node.json scripts/pack.ts build/release dist"
}
}