From bba0964fae6e5f7bd12e5bb7a7c1796f2f3cd467 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jovan=20Kruni=C4=87?= Date: Thu, 26 Nov 2020 09:35:23 +0100 Subject: [PATCH] refactor: use ionic instead of angular-cli for start scripts --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7b58cae7..73d42b01 100644 --- a/package.json +++ b/package.json @@ -29,8 +29,9 @@ "prepublishOnly": "npm ci && npm run build", "preversion": "npm run prepublishOnly", "push": "git push && git push origin \"v$npm_package_version\"", - "start": "ng serve", - "start:fake": "ng serve --configuration=fake", + "start": "ionic serve", + "start:prod": "ionic serve -- --configuration=production", + "start:fake": "ionic serve -- --configuration=fake", "test": "ng test", "tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'" },