File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## [ v1.2.1]
2
+ - updated Vite config to keep ` style.css ` as CSS file name
3
+
1
4
## [ v1.2.0]
2
5
- updated to Tailwind CSS 4.x
3
6
- message toast component exposes a property to control the transition animation
Original file line number Diff line number Diff line change 14
14
"./vx-vue.css" : " ./dist/style.css" ,
15
15
"./dist/*" : " ./dist/*"
16
16
},
17
- "version" : " 1.2.0 " ,
17
+ "version" : " 1.2.1 " ,
18
18
"license" : " MIT" ,
19
19
"homepage" : " https://vectrex.github.io/vxVue" ,
20
20
"repository" : " https://github.com/Vectrex/vxVue" ,
Original file line number Diff line number Diff line change 1
- import { resolve } from 'path'
2
1
import { defineConfig } from 'vite'
3
2
import vue from '@vitejs/plugin-vue'
4
3
import tailwindcss from '@tailwindcss/vite'
@@ -7,9 +6,10 @@ import vueDevTools from 'vite-plugin-vue-devtools'
7
6
export default defineConfig ( {
8
7
build : {
9
8
lib : {
10
- entry : resolve ( __dirname , 'src/lib.js' ) ,
9
+ entry : [ 'src/lib.js' ] ,
11
10
name : 'vxVue' ,
12
11
fileName : format => `vxvue.${ format } .js` ,
12
+ cssFileName : 'style' ,
13
13
} ,
14
14
rollupOptions : {
15
15
external : [ 'vue' ] ,
You can’t perform that action at this time.
0 commit comments