Skip to content

Commit

Permalink
fix writing tailwind directives to app style file
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeipanov committed Mar 10, 2024
1 parent 37ad5f5 commit 174b681
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions blueprints/ember-tailwind-preset/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ const postcssOptions = `postcssOptions: {

const tailwind = `@tailwind base;
@tailwind components;
@tailwind utilities;`;
@tailwind utilities;
`;

module.exports = {
description: '',
Expand Down Expand Up @@ -74,7 +75,7 @@ module.exports = {
cssPath = 'tests/dummy/' + cssPath;
}

this.insertIntoFile(cssPath, tailwind);
return this.insertIntoFile(cssPath, tailwind);
});
},
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-tailwind-preset",
"version": "1.0.8",
"version": "1.0.9",
"description": "Ember configuration preset for TailwindCSS.",
"keywords": [
"ember-addon",
Expand Down

0 comments on commit 174b681

Please sign in to comment.