From 9368053be5303be762855fff36296b53f88b2408 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Fri, 6 Mar 2020 07:33:50 -0800 Subject: [PATCH] build: set dev-infra package to be private (#35910) Setting the dev-infra package to private will prevent us from accidentally publishing the package to npm. PR Close #35910 --- dev-infra/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-infra/package.json b/dev-infra/package.json index d9bfbb5f25..c289865688 100644 --- a/dev-infra/package.json +++ b/dev-infra/package.json @@ -3,6 +3,7 @@ "version": "0.0.0", "description": "INTERNAL USE ONLY - Angular internal DevInfra tooling/scripts - INTERNAL USE ONLY", "license": "MIT", + "private": true, "bin": { "ng-dev": "./cli.js" }