From 7759ead6de4018abf576a00e1a862529feff1153 Mon Sep 17 00:00:00 2001 From: Emmanuel DE SAINT STEBAN Date: Tue, 24 Mar 2020 00:02:29 +0100 Subject: [PATCH] build: use --prod to not publish with ivy --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 24e6586..3c31671 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "test": "ng test", "lint": "ng lint", "e2e": "ng e2e", - "build_lib": "ng build ngx-http-annotations && npm run copy-readme", + "build_lib": "ng build ngx-http-annotations --prod && npm run copy-readme", "copy-readme": "copyfiles ./README.md ./dist/ngx-http-annotations", "npm_pack": "cd dist/ngx-http-annotations && npm pack", "package": "npm run build_lib && npm run npm_pack",