Skip to content

Commit 77ca208

Browse files
Merge pull request #21 from hasan-almujtaba/feat/add-standard-version
feat: add standard version
2 parents 2a9f63c + 98befc9 commit 77ca208

File tree

4 files changed

+932
-2
lines changed

4 files changed

+932
-2
lines changed

.versionrc

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

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## [2.0.0](https://github.com/hasan-almujtaba/vue-starter/compare/v1.0.0...v2.0.0) (2022-11-24)
6+
7+
8+
### Features
9+
10+
* add .prettierignore ([ab073d5](https://github.com/hasan-almujtaba/vue-starter/commit/ab073d5fc793228097587ff110e11ed6aa2bca7a))
11+
* add git hooks ([fad41a6](https://github.com/hasan-almujtaba/vue-starter/commit/fad41a6bdc5ac222fc447f1a9ed9a4a2b376a44e))
12+
* add new card component ([c298043](https://github.com/hasan-almujtaba/vue-starter/commit/c298043a154610617b038b403eabeb9bd26a992c))
13+
* add new extensions recommendation ([9f9d6ca](https://github.com/hasan-almujtaba/vue-starter/commit/9f9d6ca97215b2c6609ae4b8df84ca397d7c5fb4))
14+
* add standard-version for automatically generate changelog ([08c5de1](https://github.com/hasan-almujtaba/vue-starter/commit/08c5de1e6cc852c32feaa5718e22450bd2ec9552))
15+
* add tailwind nesting to postcss config ([5844a74](https://github.com/hasan-almujtaba/vue-starter/commit/5844a74b518f7c86a163a1a598ff5b20b5732959))
16+
* add tailwind plugins ([203c556](https://github.com/hasan-almujtaba/vue-starter/commit/203c556c3141cc201cecc3b93ee595b2052464c9))
17+
* add unit test to Card component ([e665cbf](https://github.com/hasan-almujtaba/vue-starter/commit/e665cbfef4ee3f4c59683a181fb7f9da2d3d0f03))
18+
* add vitest configuration ([7d66053](https://github.com/hasan-almujtaba/vue-starter/commit/7d66053ac267dd3bf554f45e9d0b9a4af751ee8c))
19+
20+
21+
### Bug Fixes
22+
23+
* fix Unknown at rule [@tailwindcss](https://github.com/tailwindcss)(unknownAtRules) ([a9e4f16](https://github.com/hasan-almujtaba/vue-starter/commit/a9e4f161960d1849da9f67018a319f0529d03f41))
24+
25+
26+
### Code Refactoring
27+
28+
* change vite config file format ([5ce55cd](https://github.com/hasan-almujtaba/vue-starter/commit/5ce55cd9fb22d28180c8aa912499e6ff3d329758))
29+
* **dependencies:** update dependencies to latest version ([f5c8f6f](https://github.com/hasan-almujtaba/vue-starter/commit/f5c8f6f877c1fc2cd34c4c0c5457169981343d5c))
30+
* refactor code formatting ([f121ea1](https://github.com/hasan-almujtaba/vue-starter/commit/f121ea11aaa8738befc9a304785eeea09cf6280f))
31+
* remove unused components ([4b6c6d7](https://github.com/hasan-almujtaba/vue-starter/commit/4b6c6d7799b2c4dd9b128822b8a3e90ef480b578))
32+
* remove unused css ([0c316e5](https://github.com/hasan-almujtaba/vue-starter/commit/0c316e55f6ee05666725023d3f75b19caac7679f))
33+
* remove unused pages ([46c5759](https://github.com/hasan-almujtaba/vue-starter/commit/46c57596101e7b328a7df88a0bceb16e63277a18))
34+
* remove unused pinia store ([e248532](https://github.com/hasan-almujtaba/vue-starter/commit/e2485322418dfd380d448f4e353a4e13251c458d))
35+
* update auto component import ([51086bc](https://github.com/hasan-almujtaba/vue-starter/commit/51086bc0c6d731f8c933d2715b1482d237d8b43b))
36+
* update default layout ([91fcb03](https://github.com/hasan-almujtaba/vue-starter/commit/91fcb0355f728eb28bb98a82dd0edc108c30af13))
37+
* update default title tag ([d0983c0](https://github.com/hasan-almujtaba/vue-starter/commit/d0983c0b1fb7beda3e2af0790ba8443d889fc034))
38+
* update home page ui ([fabcf83](https://github.com/hasan-almujtaba/vue-starter/commit/fabcf83ec541e74fd7fc0968bd154b8b4988df14))

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@hasan-almujtaba/vue-starter",
33
"type": "module",
44
"private": true,
5-
"version": "0.0.1",
5+
"version": "2.0.0",
66
"scripts": {
77
"dev": "vite",
88
"build": "vite-ssg build",
@@ -11,7 +11,8 @@
1111
"format": "prettier --write \"**/*.{vue,ts,js}\"",
1212
"prepare": "husky install",
1313
"type:check": "vue-tsc --noEmit",
14-
"test": "vitest"
14+
"test": "vitest",
15+
"release": "standard-version"
1516
},
1617
"dependencies": {
1718
"@fontsource/roboto": "^4.5.8",
@@ -39,6 +40,7 @@
3940
"lint-staged": "^13.0.3",
4041
"postcss": "^8.4.19",
4142
"sass": "^1.56.1",
43+
"standard-version": "^9.5.0",
4244
"tailwindcss": "^3.2.4",
4345
"typescript": "^4.9.3",
4446
"unplugin-auto-import": "^0.11.4",

0 commit comments

Comments
 (0)