Skip to content

Commit

Permalink
1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ouweiya committed Apr 1, 2023
1 parent 326f5fc commit dd1c0ad
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-tailwindcss-lit",
"version": "1.0.2",
"version": "1.0.3",
"description": "",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const pluginTailwindcssLit = (): Plugin => {
}
});

const csscode = `import { css } from 'lit';\nexport default css\`\n${result.css}\``;
const csscode = `import { css } from 'lit';\nconst styles = css\`${result.css}\`;\nexport default styles;`;
return {
code: csscode,
map: result.map.toString(),
Expand Down

0 comments on commit dd1c0ad

Please sign in to comment.