From 6ee9c8997718e26a44b895c957d9f98dba439acd Mon Sep 17 00:00:00 2001 From: bluwy Date: Sun, 26 Jun 2022 13:35:59 +0800 Subject: [PATCH] chore: set local packages private --- 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" }