From b7d268b50098905e1b948f68a9c191749df04706 Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Sun, 26 Jun 2022 21:48:17 +0800 Subject: [PATCH] chore: set local packages private (#8790) --- playground/external/dep-that-imports-vue/package.json | 3 ++- playground/external/dep-that-requires-vue/package.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/playground/external/dep-that-imports-vue/package.json b/playground/external/dep-that-imports-vue/package.json index 2c088c73cbb035..0fcd4b186a979b 100644 --- a/playground/external/dep-that-imports-vue/package.json +++ b/playground/external/dep-that-imports-vue/package.json @@ -1,6 +1,7 @@ { "name": "@vitejs/dep-that-imports-vue", - "version": "0.0.1", + "private": true, + "version": "0.0.0", "dependencies": { "vue": "^3.2.37" } diff --git a/playground/external/dep-that-requires-vue/package.json b/playground/external/dep-that-requires-vue/package.json index a12c43b40fb282..a71847a02bb969 100644 --- a/playground/external/dep-that-requires-vue/package.json +++ b/playground/external/dep-that-requires-vue/package.json @@ -1,6 +1,7 @@ { "name": "@vitejs/dep-that-requires-vue", - "version": "0.0.1", + "private": true, + "version": "0.0.0", "dependencies": { "vue": "^3.2.37" }