diff --git a/packages/angular/package.json b/packages/angular/package.json index 0c4fc5885a..4adacbe257 100644 --- a/packages/angular/package.json +++ b/packages/angular/package.json @@ -37,7 +37,6 @@ "prettier": "prettier \"**/*.ts\"", "eslint": "eslint . --ext .ts", "prerelease": "npm run validate && np prerelease --yolo --any-branch --tag next", - "sync": "./scripts/sync.sh", "test": "echo 'angular no tests yet'", "tsc": "tsc -p .", "validate": "npm i && npm run lint && npm run test && npm run build" diff --git a/packages/angular/scripts/sync.sh b/packages/angular/scripts/sync.sh deleted file mode 100755 index 2c2e4a5817..0000000000 --- a/packages/angular/scripts/sync.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash - -set -e - -# Delete old packages -rm -f *.tgz - -# Pack @ionic/core -npm pack ../../core - -# Install Dependencies -npm install *.tgz --no-save