Skip to content

Commit 779ef58

Browse files
committed
update package.json and install standard-version
1 parent 1d0e0da commit 779ef58

File tree

3 files changed

+348
-33
lines changed

3 files changed

+348
-33
lines changed

.versionrc.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"types": [
3+
{ "type": "feat", "section": "Features" },
4+
{ "type": "fix", "section": "Bug Fixes" },
5+
{ "type": "chore", "section": "Chores" },
6+
{ "type": "docs", "hidden": true },
7+
{ "type": "style", "section": "Style Updates" },
8+
{ "type": "refactor", "section": "Refactor" },
9+
{ "type": "perf", "section": "Performance Improvement" },
10+
{ "type": "test", "hidden": true },
11+
{ "type": "dev", "hidden": true }
12+
]
13+
}

package.json

Lines changed: 21 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,30 @@
11
{
22
"name": "vue3-select",
33
"version": "0.0.1",
4-
"description": "Everything you wish the HTML <select> element could do, wrapped up into a lightweight, extensible Vue component.",
5-
"author": "Howard Chen <howard.tzw@gmail.com>, Jeff Sagal <sagalbot@gmail.com>",
4+
"description": "A maintained fork of vue-select for Vue 3",
5+
"author": "Jeff Sagal <sagalbot@gmail.com>, Howard Chen <howard.tzw@gmail.com>",
66
"homepage": "https://vue-select.org",
77
"directories": {
88
"doc": "docs",
99
"test": "tests"
1010
},
11+
"scripts": {
12+
"dev:docs": "cd docs && yarn serve",
13+
"build:docs": "cd docs && yarn build",
14+
"semantic-release": "semantic-release",
15+
"commit": "git-cz",
16+
"dev": "vite",
17+
"build": "vue-tsc --noEmit && vite build",
18+
"preview": "vite preview --port 5050",
19+
"test": "vitest --environment jsdom",
20+
"coverage": "vitest --run --coverage --environment jsdom --silent",
21+
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
22+
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
23+
"release": "standard-version",
24+
"release:patch": "standard-version --release-as patch",
25+
"release:minor": "standard-version --release-as minor",
26+
"release:major": "standard-version --release-as major"
27+
},
1128
"files": [
1229
"dist"
1330
],
@@ -27,22 +44,9 @@
2744
"private": false,
2845
"license": "MIT",
2946
"prepare": "npm run build",
30-
"scripts": {
31-
"dev:docs": "cd docs && yarn serve",
32-
"build:docs": "cd docs && yarn build",
33-
"semantic-release": "semantic-release",
34-
"commit": "git-cz",
35-
"dev": "vite",
36-
"build": "vue-tsc --noEmit && vite build",
37-
"preview": "vite preview --port 5050",
38-
"test": "vitest --environment jsdom",
39-
"coverage": "vitest --run --coverage --environment jsdom --silent",
40-
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
41-
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
42-
},
4347
"repository": {
4448
"type": "git",
45-
"url": "https://github.com/sagalbot/vue-select.git"
49+
"url": "https://github.com/howard-tzw/vue3-select.git"
4650
},
4751
"peerDependencies": {
4852
"vue": "3.x"
@@ -71,6 +75,7 @@
7175
"postcss-nested": "^5.0.6",
7276
"prettier": "^2.7.1",
7377
"semantic-release": "^19.0.3",
78+
"standard-version": "^9.5.0",
7479
"typescript": "^4.7.4",
7580
"vite": "^3.0.0",
7681
"vitest": "^0.18.1",

0 commit comments

Comments
 (0)