mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
feat: add commit cz & vue-shim.d.ts
This commit is contained in:
parent
2b0f192c52
commit
5da603bffb
1783
package-lock.json
generated
1783
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
13
package.json
13
package.json
@ -3,14 +3,21 @@
|
|||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build"
|
"build": "vite build",
|
||||||
|
"cz": "npx git-cz"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^3.0.0-rc.1",
|
"vue": "^3.0.0-rc.1",
|
||||||
"vue-router": "^4.0.0-beta.2"
|
"vue-router": "^4.0.0-beta.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"vite": "^1.0.0-rc.1",
|
"@vue/compiler-sfc": "^3.0.0-rc.1",
|
||||||
"@vue/compiler-sfc": "^3.0.0-rc.1"
|
"cz-conventional-changelog": "^3.2.0",
|
||||||
|
"vite": "^1.0.0-rc.1"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"commitizen": {
|
||||||
|
"path": "./node_modules/cz-conventional-changelog"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
5
src/vue-shim.d.ts
vendored
Normal file
5
src/vue-shim.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
declare module '*.vue' {
|
||||||
|
import { Component } from 'vue'
|
||||||
|
const _default: Component
|
||||||
|
export default _default
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user