Skip to content

Commit 53f7922

Browse files
committed
chore: release v2.0.0-alpha.4
1 parent 9e182be commit 53f7922

File tree

4 files changed

+124
-124
lines changed

4 files changed

+124
-124
lines changed

docs/package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "docs",
3-
"version": "2.0.0-alpha.3",
4-
"description": "",
5-
"scripts": {
6-
"docs:dev": "vitepress dev",
7-
"docs:build": "vitepress build",
8-
"docs:preview": "vitepress preview"
9-
},
10-
"dependencies": {
11-
"@vueuse/core": "^10.4.1",
12-
"vueye-table": "^2.0.0-alpha.3"
13-
},
14-
"devDependencies": {
15-
"@egoist/tailwindcss-icons": "^1.2.0",
16-
"@iconify-json/solar": "^1.1.5",
17-
"@iconify-json/tabler": "^1.1.93",
18-
"@tailwindcss/typography": "^0.5.10",
19-
"autoprefixer": "^10.4.16",
20-
"pnpm": "^8.8.0",
21-
"postcss": "^8.4.30",
22-
"tailwindcss": "^3.3.3",
23-
"vitepress": "1.0.0-rc.20"
24-
},
25-
"keywords": [],
26-
"author": "Boussadjra Brahim",
27-
"license": "MIT"
28-
}
2+
"name": "docs",
3+
"version": "2.0.0-alpha.4",
4+
"description": "",
5+
"scripts": {
6+
"docs:dev": "vitepress dev",
7+
"docs:build": "vitepress build",
8+
"docs:preview": "vitepress preview"
9+
},
10+
"dependencies": {
11+
"@vueuse/core": "^10.4.1",
12+
"vueye-table": "^2.0.0-alpha.3"
13+
},
14+
"devDependencies": {
15+
"@egoist/tailwindcss-icons": "^1.2.0",
16+
"@iconify-json/solar": "^1.1.5",
17+
"@iconify-json/tabler": "^1.1.93",
18+
"@tailwindcss/typography": "^0.5.10",
19+
"autoprefixer": "^10.4.16",
20+
"pnpm": "^8.8.0",
21+
"postcss": "^8.4.30",
22+
"tailwindcss": "^3.3.3",
23+
"vitepress": "1.0.0-rc.20"
24+
},
25+
"keywords": [],
26+
"author": "Boussadjra Brahim",
27+
"license": "MIT"
28+
}

package.json

Lines changed: 86 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,88 +1,88 @@
11
{
2-
"name": "vueye-table",
3-
"version": "2.0.0-alpha.3",
4-
"private": false,
5-
"description": "Vue data table",
6-
"author": "Brahim Boussadjra",
7-
"repository": "https://github.com/boussadjra/vueye-table",
8-
"license": "MIT",
9-
"scripts": {
10-
"docs:dev": "pnpm --filter docs docs:dev",
11-
"docs:build": "pnpm --filter docs docs:build",
12-
"docs:preview": "pnpm --filter docs docs:preview",
13-
"story:dev": "pnpm --filter vueye-table story:dev",
14-
"story:build": "pnpm --filter vueye-table story:build",
15-
"story:preview": "pnpm --filter vueye-table story:preview",
16-
"dev": "pnpm --filter vueye-table dev",
17-
"build": "pnpm --filter vueye-table build",
18-
"test:unit": "pnpm --filter vueye-table test:unit",
19-
"commit": "git-cz",
20-
"release": "bumpp package.json packages/**/package.json docs/package.json --tag --tag-name v${version}",
21-
"pub:release": "cd packages/vueye-table && pnpm pub:release",
22-
"up": "taze -w",
23-
"clean-all": "rimraf node_modules && rimraf packages/*/node_modules && rimraf docs/node_modules",
24-
"prepare": "pnpm simple-git-hooks",
25-
"lint": "eslint . --ignore-path .gitignore",
26-
"lint:fix": "eslint . --fix --ignore-path .gitignore",
27-
"format": "prettier --write ."
28-
},
29-
"devDependencies": {
30-
"@antfu/eslint-config": "^0.43.1",
31-
"@antfu/ni": "^0.21.8",
32-
"@commitlint/cli": "^17.7.1",
33-
"@commitlint/config-conventional": "^17.7.0",
34-
"@types/markdown-it": "^13.0.2",
35-
"@types/node": "^20.7.1",
36-
"@typescript-eslint/eslint-plugin": "^6.7.3",
37-
"@typescript-eslint/parser": "^6.7.3",
38-
"@vue/tsconfig": "^0.4.0",
39-
"bumpp": "^9.2.0",
40-
"commitizen": "^4.3.0",
41-
"concurrently": "^8.2.1",
42-
"eslint": "^8.50.0",
43-
"eslint-config-airbnb-base": "^15.0.0",
44-
"eslint-import-resolver-typescript": "^3.6.1",
45-
"eslint-plugin-eslint-comments": "^3.2.0",
46-
"eslint-plugin-import": "^2.28.1",
47-
"eslint-plugin-jsonc": "^2.9.0",
48-
"eslint-plugin-react": "^7.33.2",
49-
"eslint-plugin-unicorn": "^48.0.1",
50-
"eslint-plugin-vue": "^9.17.0",
51-
"lint-staged": "^14.0.1",
52-
"pathe": "^1.1.1",
53-
"pnpm": "^8.8.0",
54-
"rimraf": "^5.0.5",
55-
"semver": "^7.5.4",
56-
"simple-git-hooks": "^2.9.0",
57-
"taze": "^0.11.3",
58-
"tsx": "^3.13.0",
59-
"typescript": "^5.2.2",
60-
"unbuild": "^2.0.0",
61-
"vitest": "^0.34.5"
62-
},
63-
"packageManager": "[email protected]",
64-
"commitlint": {
65-
"extends": [
66-
"@commitlint/config-conventional"
2+
"name": "vueye-table",
3+
"version": "2.0.0-alpha.4",
4+
"private": false,
5+
"description": "Vue data table",
6+
"author": "Brahim Boussadjra",
7+
"repository": "https://github.com/boussadjra/vueye-table",
8+
"license": "MIT",
9+
"scripts": {
10+
"docs:dev": "pnpm --filter docs docs:dev",
11+
"docs:build": "pnpm --filter docs docs:build",
12+
"docs:preview": "pnpm --filter docs docs:preview",
13+
"story:dev": "pnpm --filter vueye-table story:dev",
14+
"story:build": "pnpm --filter vueye-table story:build",
15+
"story:preview": "pnpm --filter vueye-table story:preview",
16+
"dev": "pnpm --filter vueye-table dev",
17+
"build": "pnpm --filter vueye-table build",
18+
"test:unit": "pnpm --filter vueye-table test:unit",
19+
"commit": "git-cz",
20+
"release": "bumpp package.json packages/**/package.json docs/package.json --tag --tag-name v${version}",
21+
"pub:release": "cd packages/vueye-table && pnpm pub:release",
22+
"up": "taze -w",
23+
"clean-all": "rimraf node_modules && rimraf packages/*/node_modules && rimraf docs/node_modules",
24+
"prepare": "pnpm simple-git-hooks",
25+
"lint": "eslint . --ignore-path .gitignore",
26+
"lint:fix": "eslint . --fix --ignore-path .gitignore",
27+
"format": "prettier --write ."
28+
},
29+
"devDependencies": {
30+
"@antfu/eslint-config": "^0.43.1",
31+
"@antfu/ni": "^0.21.8",
32+
"@commitlint/cli": "^17.7.1",
33+
"@commitlint/config-conventional": "^17.7.0",
34+
"@types/markdown-it": "^13.0.2",
35+
"@types/node": "^20.7.1",
36+
"@typescript-eslint/eslint-plugin": "^6.7.3",
37+
"@typescript-eslint/parser": "^6.7.3",
38+
"@vue/tsconfig": "^0.4.0",
39+
"bumpp": "^9.2.0",
40+
"commitizen": "^4.3.0",
41+
"concurrently": "^8.2.1",
42+
"eslint": "^8.50.0",
43+
"eslint-config-airbnb-base": "^15.0.0",
44+
"eslint-import-resolver-typescript": "^3.6.1",
45+
"eslint-plugin-eslint-comments": "^3.2.0",
46+
"eslint-plugin-import": "^2.28.1",
47+
"eslint-plugin-jsonc": "^2.9.0",
48+
"eslint-plugin-react": "^7.33.2",
49+
"eslint-plugin-unicorn": "^48.0.1",
50+
"eslint-plugin-vue": "^9.17.0",
51+
"lint-staged": "^14.0.1",
52+
"pathe": "^1.1.1",
53+
"pnpm": "^8.8.0",
54+
"rimraf": "^5.0.5",
55+
"semver": "^7.5.4",
56+
"simple-git-hooks": "^2.9.0",
57+
"taze": "^0.11.3",
58+
"tsx": "^3.13.0",
59+
"typescript": "^5.2.2",
60+
"unbuild": "^2.0.0",
61+
"vitest": "^0.34.5"
62+
},
63+
"packageManager": "[email protected]",
64+
"commitlint": {
65+
"extends": [
66+
"@commitlint/config-conventional"
67+
]
68+
},
69+
"simple-git-hooks": {
70+
"pre-commit": "pnpm lint-staged",
71+
"commit-msg": "pnpm commitlint --edit ${1}"
72+
},
73+
"lint-staged": {
74+
"*.{js,ts,vue,css}": [
75+
"pnpm run lint:fix",
76+
"pnpm run format"
77+
]
78+
},
79+
"keywords": [
80+
"vue",
81+
"vue3",
82+
"vue3 component",
83+
"vue3 table",
84+
"vue3 data table",
85+
"vue3 datatable",
86+
"vueye-table"
6787
]
68-
},
69-
"simple-git-hooks": {
70-
"pre-commit": "pnpm lint-staged",
71-
"commit-msg": "pnpm commitlint --edit ${1}"
72-
},
73-
"lint-staged": {
74-
"*.{js,ts,vue,css}": [
75-
"pnpm run lint:fix",
76-
"pnpm run format"
77-
]
78-
},
79-
"keywords": [
80-
"vue",
81-
"vue3",
82-
"vue3 component",
83-
"vue3 table",
84-
"vue3 data table",
85-
"vue3 datatable",
86-
"vueye-table"
87-
]
88-
}
88+
}
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"name": "vueye-table-nuxt",
3-
"version": "2.0.0-alpha.3",
4-
"description": "",
5-
"main": "index.js",
6-
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
8-
},
9-
"keywords": [],
10-
"author": "",
11-
"license": "MIT"
2+
"name": "vueye-table-nuxt",
3+
"version": "2.0.0-alpha.4",
4+
"description": "",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "MIT"
1212
}

packages/vueye-table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vueye-table",
3-
"version": "2.0.0-alpha.3",
3+
"version": "2.0.0-alpha.4",
44
"private": false,
55
"description": "Vue data table",
66
"author": "Brahim Boussadjra",

0 commit comments

Comments
 (0)