Skip to content

Commit

Permalink
Merge pull request #19 from nabla-studio/DavideSegullo/fix-exports
Browse files Browse the repository at this point in the history
Davide segullo/fix exports
  • Loading branch information
DavideSegullo authored Nov 13, 2023
2 parents fcc17c4 + d6098c8 commit ecd556b
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/chain-registry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"version": "0.3.0",
"sideEffects": false,
"type": "module",
"dependencies": {},
"main": "./index.js",
"module": "./index.mjs",
Expand Down
3 changes: 3 additions & 0 deletions packages/chain-registry/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export default defineConfig({
formats: ['es', 'cjs'],
},
rollupOptions: {
output: {
preserveModules: true,
},
// External packages that should not be bundled into your library.
external: [],
},
Expand Down
1 change: 1 addition & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"version": "0.6.0",
"sideEffects": false,
"type": "module",
"dependencies": {
"@nabla-studio/chain-registry": "*"
},
Expand Down
3 changes: 3 additions & 0 deletions packages/core/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export default defineConfig({
formats: ['es', 'cjs'],
},
rollupOptions: {
output: {
preserveModules: true,
},
// External packages that should not be bundled into your library.
external: [
'cosmjs-types',
Expand Down
1 change: 1 addition & 0 deletions packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"version": "0.1.3",
"sideEffects": false,
"type": "module",
"dependencies": {
"@quirks/vue": "*",
"@quirks/store": "*"
Expand Down
3 changes: 3 additions & 0 deletions packages/nuxt/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export default defineConfig({
formats: ['es', 'cjs'],
},
rollupOptions: {
output: {
preserveModules: true,
},
// External packages that should not be bundled into your library.
external: [
'nuxt',
Expand Down
1 change: 1 addition & 0 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"version": "0.7.1",
"sideEffects": false,
"type": "module",
"dependencies": {
"@nabla-studio/chain-registry": "*",
"@quirks/core": "*"
Expand Down
3 changes: 3 additions & 0 deletions packages/store/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export default defineConfig({
formats: ['es', 'cjs'],
},
rollupOptions: {
output: {
preserveModules: true,
},
// External packages that should not be bundled into your library.
external: [
'zustand',
Expand Down
1 change: 1 addition & 0 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"version": "0.2.3",
"sideEffects": false,
"type": "module",
"dependencies": {
"@quirks/store": "*",
"@quirks/core": "*"
Expand Down
3 changes: 3 additions & 0 deletions packages/vue/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ export default defineConfig({
formats: ['es', 'cjs'],
},
rollupOptions: {
output: {
preserveModules: true,
},
// External packages that should not be bundled into your library.
external: [
'vue',
Expand Down
1 change: 1 addition & 0 deletions packages/wallets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"version": "0.5.0",
"sideEffects": false,
"type": "module",
"dependencies": {
"@quirks/core": "*",
"@nabla-studio/chain-registry": "*"
Expand Down
3 changes: 3 additions & 0 deletions packages/wallets/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ export default defineConfig({
formats: ['es', 'cjs'],
},
rollupOptions: {
output: {
preserveModules: true,
},
// External packages that should not be bundled into your library.
external: [
'cosmjs-types',
Expand Down

0 comments on commit ecd556b

Please sign in to comment.