From 80b535e2d1b544f6366acce3e63b05b3f9210004 Mon Sep 17 00:00:00 2001 From: keenondrums Date: Wed, 20 Feb 2019 15:41:34 +0300 Subject: [PATCH] Fix build issues --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ea06423..c322b41 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,11 @@ { "name": "angular-builder-custom-terser-options", - "version": "1.0.0", + "version": "1.0.1", "description": "Angular builder that allows Terser (Uglify) customization", "main": "dist/index.js", "builders": "builders.json", "scripts": { - "compile": "npx rimraf ./dist && npx tsc -p ./tsconfig.prod.json & npx copyfiles ./src/**/*.json dist", + "compile": "npx rimraf ./dist && npx tsc -p ./tsconfig.prod.json && npx copyfiles ./src/**/*.json dist", "lint": "npx tsc -p ./tsconfig.json --noEmit && npx tslint -c ./tslint.json -p ./tsconfig.json", "prepack": "npm run compile" },