From d13cd89ecc09eb806cc7133d844535865bd4cfdb Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Wed, 14 Dec 2022 16:59:47 +0800 Subject: [PATCH] fix: add `@babel/core` as peerDependencies Fixes pnpm & yarn warnings as said in https://github.com/vuejs/create-vue/issues/213 --- packages/babel-plugin-jsx/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/babel-plugin-jsx/package.json b/packages/babel-plugin-jsx/package.json index 544d258..978bef1 100644 --- a/packages/babel-plugin-jsx/package.json +++ b/packages/babel-plugin-jsx/package.json @@ -48,5 +48,8 @@ "ts-jest": "^26.5.6", "typescript": "^4.8.4", "vue": "3.2.41" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }