From 33157c934ec18b94e420353195fa9f31c9310b10 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Wed, 30 Dec 2020 18:47:51 +0100 Subject: [PATCH] Updated build script nameing --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d88542d..9fefd5c 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,9 @@ "README.md" ], "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": "openapi --input ./openapi.json --output ./lib --client fetch", + "build:lib": "openapi --input ./openapi.json --output ./lib --client fetch", "build:compile": "tsc", "build:cleanup": "rimraf ./lib" },