File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @kolirt/vue-web3-auth" ,
3- "version" : " 2.3.3 " ,
3+ "version" : " 2.3.4 " ,
44 "type" : " module" ,
55 "description" : " Web3 authentication for Vue3 apps based on WalletConnect Web3Modal v2" ,
66 "author" : " kolirt" ,
Original file line number Diff line number Diff line change @@ -21,12 +21,12 @@ export default defineConfig({
2121 } ,
2222 emptyOutDir : true ,
2323 rollupOptions : {
24- external : [ ... Object . keys ( pkg . dependencies ) ] ,
24+ external : Object . keys ( { ... pkg . dependencies , ... pkg . devDependencies } ) ,
2525 output : {
2626 globals : {
2727 ...( ( ) => {
2828 const obj : Record < string , string > = { }
29- Object . keys ( pkg . dependencies ) . forEach ( ( key ) => {
29+ Object . keys ( { ... pkg . dependencies , ... pkg . devDependencies } ) . forEach ( ( key ) => {
3030 obj [ key ] = key
3131 } )
3232 return obj
You can’t perform that action at this time.
0 commit comments