Skip to content

Commit 0a42e64

Browse files
committed
fix: rename output CSS file to style.css
Change the default CSS output filename from 'index.css' to 'style.css' to match the documented import path in README.md
1 parent 70475f4 commit 0a42e64

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-movinglight",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "A customizable moving light component for Vue.js applications, perfect for creating dynamic lighting effects, stage lighting simulations, or interactive UI elements.",
55
"main": "dist/vue-movinglight.umd.js",
66
"module": "dist/vue-movinglight.esm.js",

vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default defineConfig(({ command }) => {
5050
vue: "Vue",
5151
},
5252
assetFileNames: (assetInfo) => {
53-
if (assetInfo.name === "style.css") {
53+
if (assetInfo.name === "index.css") {
5454
return "style.css";
5555
}
5656
return assetInfo.name;

0 commit comments

Comments
 (0)