Skip to content

Commit

Permalink
build: bump Vite to 6 (#403)
Browse files Browse the repository at this point in the history
build: bump vite to 6
  • Loading branch information
pure-js authored Dec 1, 2024
1 parent bfdc609 commit 87c2754
Show file tree
Hide file tree
Showing 4 changed files with 1,399 additions and 449 deletions.
13 changes: 13 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Folder-specific settings
//
// For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
{
"format_on_save": "on",
"formatter": {
"external": {
"command": "node_modules/.bin/prettier",
"arguments": ["--stdin-filepath", "{buffer_path}"]
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Local Microblogging Frontend Client

The App allows you to view your news feed, add new posts and delete posts. Posts are stored locally, without the use of back-end. The visual design is left to your discretion. TLDR: React CRUD;
The app allows you to browse your news feed, add new posts, edit and delete them. The posts are stored locally in the browser, without using the backend. TLDR: React CRUD

## Tech Stack

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "local-microblogging-client",
"version": "2.12.1",
"description": "Local Microblogging Frontend Client",
"main": "src/index.jsx",
"main": "src/index.tsx",
"homepage": "https://pure-js.github.io/local-microblogging-client/",
"type": "module",
"scripts": {
Expand Down Expand Up @@ -46,8 +46,8 @@
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vanilla-extract/vite-plugin": "^4.0.15",
"@vitejs/plugin-react-swc": "~3.7.0",
"@vanilla-extract/vite-plugin": "^4.0.18",
"@vitejs/plugin-react-swc": "~3.7.2",
"autoprefixer": "^10.4.13",
"browserslist": "~4.22.1",
"chromatic": "~9.0.0",
Expand All @@ -68,21 +68,21 @@
"msw": "^1.3.3",
"postcss": "^8.4.41",
"postcss-nesting": "13.0.0",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"prettier": "3.4.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"standard-version": "^9.5.0",
"storybook": "^8.0.10",
"storybook-addon-react-router-v6": "~2.0.15",
"tailwindcss": "^3.4.10",
"typescript": "^5.2.2",
"vite": "^5.4.2",
"vite-plugin-pwa": "^0.20.1",
"vite": "^6.0.1",
"vite-plugin-pwa": "^0.21.1",
"vitest": "^2.0.5"
},
"dependencies": {
"@growthbook/growthbook-react": "^0.20.0",
"@vanilla-extract/css": "^1.15.5",
"daisyui": "^4.12.10",
"daisyui": "^4.12.14",
"dexie": "^4.0.8",
"dexie-react-hooks": "^1.1.7",
"react": "^18.3.1",
Expand Down
Loading

0 comments on commit 87c2754

Please sign in to comment.