Skip to content

Commit

Permalink
v5 (#252)
Browse files Browse the repository at this point in the history
* chore: bump deps

* chore: added type=module to package.json

* fix: made head meta reactive

* feat: added router to store
  • Loading branch information
Uninen authored Nov 24, 2023
1 parent 5a42174 commit 469b820
Show file tree
Hide file tree
Showing 13 changed files with 562 additions and 511 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 5.0.0 (2023-11-24)

- Feat: added `router` instance to store.
- Enhancement: titles / head meta are now reactive.
- Fix: added type=module to package.json.
- Docs: updated homepage and README.

## 4.3.0 (2023-11-17)

- Feat: upgraded Vite to v5.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Please [check out the homepage](https://vite-ts-tailwind-starter.vercel.app/) fo
- `VITE_APP_VERSION` is read from `package.json` version at build time
- `VITE_APP_BUILD_EPOCH` is populated as `new Date().getTime()` at build time
- Using newest `script setup` syntax (see the official [Script Setup documentation](https://vuejs.org/api/sfc-script-setup.html))
- Vitest unit + component tests
- Vitest unit + component tests with code coverage
- GitHub workflows
- Renovatebot for keeping up with dependencies
- Automated unit + component tests
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "vite-ts-tailwind-starter",
"version": "4.3.0",
"version": "5.0.0",
"type": "module",
"scripts": {
"dev": "cross-env DEBUG=0 vite",
"build": "vite build",
Expand All @@ -21,20 +22,20 @@
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.4.0",
"@iconify/json": "2.2.142",
"@iconify/json": "2.2.146",
"@iconify/types": "2.0.0",
"@pinia/testing": "0.1.3",
"@playwright/test": "1.40.0",
"@rushstack/eslint-patch": "1.5.1",
"@rushstack/eslint-patch": "1.6.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/line-clamp": "0.4.4",
"@tailwindcss/typography": "0.5.10",
"@types/jsdom": "21.1.5",
"@types/lodash-es": "4.17.11",
"@types/node": "20.9.1",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"@types/jsdom": "21.1.6",
"@types/lodash-es": "4.17.12",
"@types/node": "20.10.0",
"@typescript-eslint/eslint-plugin": "6.12.0",
"@typescript-eslint/parser": "6.12.0",
"@vitejs/plugin-vue": "4.5.0",
"@vitest/coverage-v8": "0.34.6",
"@vue/eslint-config-prettier": "8.0.0",
Expand All @@ -57,10 +58,10 @@
"postcss-import": "15.1.0",
"postcss-nesting": "12.0.1",
"tailwindcss": "3.3.5",
"typescript": "5.2.2",
"typescript": "5.3.2",
"unplugin-auto-import": "0.16.7",
"unplugin-vue-components": "0.25.2",
"vite": "5.0.0",
"vite": "5.0.2",
"vitest": "0.34.6",
"vue-tsc": "1.8.22",
"wait-on": "7.2.0"
Expand Down
Loading

1 comment on commit 469b820

@vercel
Copy link

@vercel vercel bot commented on 469b820 Nov 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.