Skip to content

Commit c718fdf

Browse files
committed
Build: Version number in package.json bumped
1 parent b2727e8 commit c718fdf

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [v1.2.1]
2+
- updated Vite config to keep `style.css` as CSS file name
3+
14
## [v1.2.0]
25
- updated to Tailwind CSS 4.x
36
- message toast component exposes a property to control the transition animation

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"./vx-vue.css": "./dist/style.css",
1515
"./dist/*": "./dist/*"
1616
},
17-
"version": "1.2.0",
17+
"version": "1.2.1",
1818
"license": "MIT",
1919
"homepage": "https://vectrex.github.io/vxVue",
2020
"repository": "https://github.com/Vectrex/vxVue",

vite.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { resolve } from 'path'
21
import { defineConfig } from 'vite'
32
import vue from '@vitejs/plugin-vue'
43
import tailwindcss from '@tailwindcss/vite'
@@ -7,9 +6,10 @@ import vueDevTools from 'vite-plugin-vue-devtools'
76
export default defineConfig({
87
build: {
98
lib: {
10-
entry: resolve(__dirname, 'src/lib.js'),
9+
entry: ['src/lib.js'],
1110
name: 'vxVue',
1211
fileName: format => `vxvue.${format}.js`,
12+
cssFileName: 'style',
1313
},
1414
rollupOptions: {
1515
external: ['vue'],

0 commit comments

Comments
 (0)