Skip to content

Commit

Permalink
expose Header and WalletConnect css classnames to be able to override…
Browse files Browse the repository at this point in the history
… them in apps
  • Loading branch information
kishkoigor committed Oct 28, 2024
1 parent 0edf868 commit cc07e23
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@airdao/ui-library",
"version": "2.0.0-beta.13",
"version": "2.0.0-beta.14",
"types": "./dist/types.d.ts",
"exports": {
".": {
Expand Down
7 changes: 7 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,15 @@ export default [
typescript({ tsconfig: './tsconfig.json' }),
terser({ keep_fnames: true }),
postcss({
exclude: ['src/components/Header/*', 'src/components/ConnectWallet/*'],
modules: true,
}),
postcss({
include: ['src/components/Header/*', 'src/components/ConnectWallet/*'],
modules: {
generateScopedName: 'airdao___[folder]__[local]',
},
}),
image(),
],
external: ['react', 'react-dom', 'process', 'viem', 'wagmi', 'ethers'],
Expand Down
Empty file.

0 comments on commit cc07e23

Please sign in to comment.