From 594667c7862a27e995b72f42761ea027ba0e0a9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E9=9B=BE=E4=B8=89=E8=AF=AD?= <32354856+baiwusanyu-c@users.noreply.github.com> Date: Wed, 30 Aug 2023 22:06:21 +0800 Subject: [PATCH] chore: updated homepage url and remove bot --- .github/dependabot.yml | 12 ------------ README.ZH-CN.md | 2 +- README.md | 2 +- package.json | 6 +++--- packages/core/index.ts | 2 +- packages/core/runtime/process-css.ts | 2 +- 6 files changed, 7 insertions(+), 19 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 01cb835..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,12 +0,0 @@ -version: 2 -updates: - - package-ecosystem: npm - directory: / - schedule: - interval: monthly - open-pull-requests-limit: 10 - allow: - - dependency-type: all - ignore: - - dependency-name: chalk - - dependency-name: eslint diff --git a/README.ZH-CN.md b/README.ZH-CN.md index 05882cc..dd5f198 100644 --- a/README.ZH-CN.md +++ b/README.ZH-CN.md @@ -8,7 +8,7 @@ unplugin-vue-cssvars 🌀 一个 vue3 的插件能够能让你在 css 文件中使用 CSSVars 特性

-English | 中文 +English | 中文

## Feature diff --git a/README.md b/README.md index 44724fd..65751cd 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ unplugin-vue-cssvars 🌀 A vue plugin that allows you to use vue3's CSSVars feature in css files

-English | 中文 +English | 中文

## Feature diff --git a/package.json b/package.json index ddae93d..ba8350a 100644 --- a/package.json +++ b/package.json @@ -23,9 +23,9 @@ ], "license": "MIT", "author": "baiwusanyu-c", - "homepage": "https://github.com/baiwusanyu-c", - "repository": "https://github.com/baiwusanyu-c/unplugin-vue-cssvars", - "bugs": "https://github.com/baiwusanyu-c/unplugin-vue-cssvars/issues", + "homepage": "https://github.com/unplugin", + "repository": "https://github.com/unplugin/unplugin-vue-cssvars", + "bugs": "https://github.com/unplugin/unplugin-vue-cssvars/issues", "main": "./index.js", "module": "./index.js", "types": "./index.d.ts", diff --git a/packages/core/index.ts b/packages/core/index.ts index 4e7b3ee..a8f5908 100644 --- a/packages/core/index.ts +++ b/packages/core/index.ts @@ -30,7 +30,7 @@ const unplugin = createUnplugin( if (userOptions.server === undefined) { log('warning', 'The server of option is not set, you need to specify whether you are using the development server or building the project') - log('warning', 'See: https://github.com/baiwusanyu-c/unplugin-vue-cssvars/blob/master/README.md#option') + log('warning', 'See: https://github.com/unplugin/unplugin-vue-cssvars/blob/master/README.md#option') } const context = { diff --git a/packages/core/runtime/process-css.ts b/packages/core/runtime/process-css.ts index 34e4e76..c094473 100644 --- a/packages/core/runtime/process-css.ts +++ b/packages/core/runtime/process-css.ts @@ -75,7 +75,7 @@ export const getVBindVariableListByPath = ( }, id) } catch (e) { if ((e as Error).message === 'path') { - const doc = 'https://github.com/baiwusanyu-c/unplugin-vue-cssvars/pull/29' + const doc = 'https://github.com/unplugin/unplugin-vue-cssvars/pull/29' throw new Error(`Unable to resolve file under path '${res.path}', see: ${doc}`) } else { throw new Error((e as Error).message)