Compare commits

..

No commits in common. "74e359a47dae2afd5b0a58343c7267fbdca61520" and "711a9c4546099cdeaa7a1799ffb85a161cbf37e9" have entirely different histories.

7 changed files with 5 additions and 880 deletions

View File

@ -1,3 +0,0 @@
cache
.temp
*.log

2
.gitignore vendored
View File

@ -3,5 +3,3 @@ node_modules
.vscode
.DS_Store
dist
cache
.temp

View File

@ -8,13 +8,7 @@
"main": "index.js",
"scripts": {
"test": "vitest",
"prepare": "husky install",
"dev": "vitepress dev site",
"build:site": "vitepress build site",
"preview": "vitepress preview site"
},
"dependencies": {
"vue": "^3.2.0"
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.4.3",
@ -23,23 +17,14 @@
"@mistjs/tsconfig": "^1.0.0",
"@mistjs/tsconfig-vue": "^0.0.3",
"@types/node": "^18.13.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vitepress": "1.0.0-alpha.47",
"vitest": "^0.28.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search"
]
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
}

851
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +0,0 @@
import { defineConfig } from 'vitepress'
export default defineConfig({
title: 'vue3组件库站点'
})

View File

@ -1 +0,0 @@
# vue3组件库站点

View File

@ -1,6 +0,0 @@
import { defineConfig } from 'vite'
import vueJsxPlugin from '@vitejs/plugin-vue-jsx'
export default defineConfig({
plugins: [vueJsxPlugin()]
})