From d067f7a94343be85f53acc546eb6887787a9cbc1 Mon Sep 17 00:00:00 2001 From: alex8088 <244096523@qq.com> Date: Sat, 22 Jul 2023 00:02:04 +0800 Subject: [PATCH] chore: remove vue package --- packages/vue/CHANGELOG.md | 0 packages/vue/LICENSE | 21 --------------------- packages/vue/README.md | 23 ----------------------- packages/vue/api-extractor.json | 8 -------- packages/vue/package.json | 31 ------------------------------- packages/vue/src/index.ts | 0 packages/vue/tsconfig.json | 8 -------- 7 files changed, 91 deletions(-) delete mode 100644 packages/vue/CHANGELOG.md delete mode 100644 packages/vue/LICENSE delete mode 100644 packages/vue/README.md delete mode 100644 packages/vue/api-extractor.json delete mode 100644 packages/vue/package.json delete mode 100644 packages/vue/src/index.ts delete mode 100644 packages/vue/tsconfig.json diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md deleted file mode 100644 index e69de29..0000000 diff --git a/packages/vue/LICENSE b/packages/vue/LICENSE deleted file mode 100644 index ca59cb7..0000000 --- a/packages/vue/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2022-present, Alex.Wei - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/packages/vue/README.md b/packages/vue/README.md deleted file mode 100644 index be63ce2..0000000 --- a/packages/vue/README.md +++ /dev/null @@ -1,23 +0,0 @@ -# @electron-toolkit/vue - -> Easy to use Electron APIs in Vue3. - ---- - -## Usage - -### Install - -```sh -npm i @electron-toolkit/vue -``` - -### Get Started - - -## API - - -## License - -[MIT](./LICENSE) © alex.wei diff --git a/packages/vue/api-extractor.json b/packages/vue/api-extractor.json deleted file mode 100644 index 6984df1..0000000 --- a/packages/vue/api-extractor.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "../../api-extractor.json", - "mainEntryPointFilePath": "./dist/types/index.d.ts", - "dtsRollup": { - "untrimmedFilePath": "", - "publicTrimmedFilePath": "./dist/index.d.ts" - } -} diff --git a/packages/vue/package.json b/packages/vue/package.json deleted file mode 100644 index e3c4fe6..0000000 --- a/packages/vue/package.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "@electron-toolkit/vue", - "version": "1.0.0", - "description": "Easy to use Electron APIs in Vue3.", - "main": "dist/index.js", - "types": "dist/index.d.ts", - "files": [ - "dist" - ], - "author": "Alex Wei", - "license": "MIT", - "repository": { - "type": "git", - "url": "git+https://github.com/alex8088/electron-toolkit.git", - "directory": "packages/vue" - }, - "bugs": { - "url": "https://github.com/alex8088/electron-toolkit/issues" - }, - "homepage": "https://github.com/alex8088/electron-toolkit/tree/master/packages/vue#readme", - "keywords": [ - "electron", - "toolkit", - "preload", - "ipcRenderer", - "vue" - ], - "peerDependencies": { - "electron": ">=13.0.0" - } -} diff --git a/packages/vue/src/index.ts b/packages/vue/src/index.ts deleted file mode 100644 index e69de29..0000000 diff --git a/packages/vue/tsconfig.json b/packages/vue/tsconfig.json deleted file mode 100644 index 98f3639..0000000 --- a/packages/vue/tsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "../../tsconfig.base.json", - "compilerOptions": { - "outDir": "dist", - "declarationDir": "dist/types" - }, - "include": ["src"] -}