Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

Commit f72ce27

Browse files
committed
build: v.0.8.3
1 parent 7f26da6 commit f72ce27

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@xsoulspace/vuefer",
33
"description": "vuefer just a way to write Vue3 styled like Flutter with Tailwind CSS",
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"private": false,
66
"author": {
77
"name": "Anton Malofeev",

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"resolveJsonModule": true,
1111
"esModuleInterop": true,
1212
"declaration": true,
13+
"declarationMap": true,
1314
"baseUrl": ".",
1415
"importHelpers": true,
1516
"skipLibCheck": true,

vite.config.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ export default defineConfig({
4545
rollupOptions: {
4646
// make sure to externalize deps that shouldn't be bundled
4747
// into your library
48-
external: ['vue'],
48+
// external: ['vue'],
4949
plugins: [],
5050
output: {
5151
dir: './dist',
52-
// Provide global variables to use in the UMD build
53-
// for externalized deps
54-
globals: {
55-
vue: 'Vue',
56-
},
52+
// // Provide global variables to use in the UMD build
53+
// // for externalized deps
54+
// globals: {
55+
// vue: 'Vue',
56+
// },
5757
},
5858
},
5959
},

0 commit comments

Comments
 (0)