From c9e9e551172f2931fe403f51d904cfc2ed2ef293 Mon Sep 17 00:00:00 2001 From: xiejiahe Date: Fri, 28 Jan 2022 16:02:06 +0800 Subject: [PATCH] chore: next replace core (#6664) --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- packages/plugin-vue/CHANGELOG.md | 2 +- packages/plugin-vue/README.md | 2 +- packages/plugin-vue/src/index.ts | 2 +- scripts/release.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 11a9a532..301b795e 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -66,7 +66,7 @@ body: required: true - label: Check that there isn't [already an issue](https://github.com/vitejs/vite/issues) that reports the same bug to avoid creating a duplicate. required: true - - label: Make sure this is a Vite issue and not a framework-specific issue. For example, if it's a Vue SFC related bug, it should likely be reported to https://github.com/vuejs/vue-next instead. + - label: Make sure this is a Vite issue and not a framework-specific issue. For example, if it's a Vue SFC related bug, it should likely be reported to https://github.com/vuejs/core instead. required: true - label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/vitejs/vite/discussions) or join our [Discord Chat Server](https://chat.vitejs.dev/). required: true diff --git a/packages/plugin-vue/CHANGELOG.md b/packages/plugin-vue/CHANGELOG.md index 69550562..ab60dc5e 100644 --- a/packages/plugin-vue/CHANGELOG.md +++ b/packages/plugin-vue/CHANGELOG.md @@ -59,7 +59,7 @@ ### Bug Fixes -* **plugin-vue:** fix hmr issue in vuejs/vue-next[#4358](https://github.com/vitejs/vite/issues/4358) ([709e4b0](https://github.com/vitejs/vite/commit/709e4b0428d8cdc8299b22898c76e58d66ca92c9)) +* **plugin-vue:** fix hmr issue in vuejs/core[#4358](https://github.com/vitejs/vite/issues/4358) ([709e4b0](https://github.com/vitejs/vite/commit/709e4b0428d8cdc8299b22898c76e58d66ca92c9)) diff --git a/packages/plugin-vue/README.md b/packages/plugin-vue/README.md index b8889fba..81ed00e7 100644 --- a/packages/plugin-vue/README.md +++ b/packages/plugin-vue/README.md @@ -32,7 +32,7 @@ export interface Options { /** * Enable Vue reactivity transform (experimental, requires vue@^3.2.25). - * https://github.com/vuejs/vue-next/tree/master/packages/reactivity-transform + * https://github.com/vuejs/core/tree/master/packages/reactivity-transform * * - `true`: transform will be enabled for all vue,js(x),ts(x) files except * those inside node_modules diff --git a/packages/plugin-vue/src/index.ts b/packages/plugin-vue/src/index.ts index e04061cd..78c0c27c 100644 --- a/packages/plugin-vue/src/index.ts +++ b/packages/plugin-vue/src/index.ts @@ -42,7 +42,7 @@ export interface Options { /** * Enable Vue reactivity transform (experimental). - * https://github.com/vuejs/vue-next/tree/master/packages/reactivity-transform + * https://github.com/vuejs/core/tree/master/packages/reactivity-transform * - `true`: transform will be enabled for all vue,js(x),ts(x) files except * those inside node_modules * - `string | RegExp`: apply to vue + only matched files (will include diff --git a/scripts/release.ts b/scripts/release.ts index 3d456aac..4c3006fe 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -1,5 +1,5 @@ /** - * modified from https://github.com/vuejs/vue-next/blob/master/scripts/release.js + * modified from https://github.com/vuejs/core/blob/master/scripts/release.js */ import colors from 'picocolors' import type { ExecaChildProcess, Options as ExecaOptions } from 'execa'