Skip to content

Commit

Permalink
Fix for #39
Browse files Browse the repository at this point in the history
  • Loading branch information
barvian committed Jul 20, 2024
1 parent 5b350cb commit 08d33d7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/fluid-tailwind/rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,11 @@ export default defineConfig({
}
},
nodeExternals({
builtinsPrefix: 'strip', // for skypack, which adds them on top
exclude: 'tailwindcss-priv' // which is to say, don't mark it as external
builtinsPrefix: 'strip', // for Skypack, which adds them on top
exclude: [
'map-obj', 'filter-obj', // https://github.com/barvian/fluid-tailwind/issues/39
'tailwindcss-priv' // for Skypack, which can't handle importing tailwindcss
]
}),
typescript({
noEmitOnError: true,
Expand Down

0 comments on commit 08d33d7

Please sign in to comment.