Updated build script nameing
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
Nicolai Ort 2020-12-30 18:47:51 +01:00
parent b8e8decb11
commit 33157c934e

View File

@ -21,9 +21,9 @@
"README.md" "README.md"
], ],
"scripts": { "scripts": {
"build:js": "npm run build:prepare && npm run build && npm run build:compile && npm run build:cleanup", "build": "npm run build:prepare && npm run build:lib && npm run build:compile && npm run build:cleanup",
"build:prepare": "rimraf ./lib ./dist", "build:prepare": "rimraf ./lib ./dist",
"build": "openapi --input ./openapi.json --output ./lib --client fetch", "build:lib": "openapi --input ./openapi.json --output ./lib --client fetch",
"build:compile": "tsc", "build:compile": "tsc",
"build:cleanup": "rimraf ./lib" "build:cleanup": "rimraf ./lib"
}, },