refactor: use ionic instead of angular-cli for start scripts

This commit is contained in:
Jovan Krunić
2020-11-26 09:35:23 +01:00
parent b0cd37732e
commit bba0964fae

View File

@@ -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'"
},