Skip to content

Commit 8f61eec

Browse files
committed
🔧 build(deps): Update package.json dependencies and scripts for admin and site
- Modified the "update" script in both admin and site package.json files to remove the '--latest' flag. - Updated @tailwindcss/forms and tailwindcss versions to fixed versions in both package.json files for consistency. - Upgraded @vitejs/plugin-vue to a compatible version in the admin package.json.
1 parent 44a22d7 commit 8f61eec

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

‎web/admin/bun.lockb‎

25.8 KB
Binary file not shown.

‎web/admin/package.json‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dev": "VITE_CJS_IGNORE_WARNING=true vite --host",
77
"build": "VITE_CJS_IGNORE_WARNING=true vite build --mode production",
88
"preview": "vite preview --host",
9-
"update": "bun update --latest"
9+
"update": "bun update"
1010
},
1111
"dependencies": {
1212
"@tiptap/extension-link": "^2.22.3",
@@ -24,17 +24,17 @@
2424
"vue-tippy": "^6.7.1"
2525
},
2626
"devDependencies": {
27-
"@tailwindcss/forms": "^0.5.10",
28-
"@vitejs/plugin-vue": "^5.2.4",
27+
"@tailwindcss/forms": "=0.5.9",
28+
"@vitejs/plugin-vue": "^6.0.0",
2929
"autoprefixer": "^10.4.21",
3030
"postcss": "^8.5.6",
3131
"postcss-import": "^16.1.1",
3232
"postcss-nesting": "^13.0.2",
3333
"prettier": "^3.6.0",
3434
"prettier-plugin-tailwindcss": "^0.6.13",
3535
"sass": "^1.89.2",
36-
"tailwindcss": "^4.1.10",
37-
"vite": "^6.3.5",
36+
"tailwindcss": "=3.4.13",
37+
"vite": "^7.0.0",
3838
"vite-plugin-svg-icons": "^2.0.1",
3939
"vite-plugin-vue-devtools": "^7.7.7"
4040
}

‎web/site/bun.lockb‎

38.9 KB
Binary file not shown.

‎web/site/package.json‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"scripts": {
66
"dev": "tailwindcss -o ./public/assets/css/style.css --watch --minify",
77
"build": "tailwindcss -o ./public/assets/css/style.css --minify",
8-
"update": "bun update --latest"
8+
"update": "bun update"
99
},
1010
"devDependencies": {
11-
"@tailwindcss/forms": "^0.5.10",
12-
"tailwindcss": "^4.1.10"
11+
"@tailwindcss/forms": "=0.5.9",
12+
"tailwindcss": "=3.4.13"
1313
}
1414
}

0 commit comments

Comments
 (0)