Skip to content

Commit

Permalink
feat(components): disable dark mode in daisyui
Browse files Browse the repository at this point in the history
and make the CHANGELOG unaffected by "npm run format"
  • Loading branch information
fengelniederhammer authored and JonasKellerer committed May 1, 2024
1 parent 2248270 commit 4439c78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"lint:lit-analyzer": "lit-analyzer",
"generate-manifest": "npx custom-elements-manifest analyze --litelement --globs src/web-components/**",
"generate-manifest:watch": "npm run generate-manifest -- --watch",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts,tsx}\" --ignore-path ./.eslintignore --write",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts,tsx}\" --write",
"check-format": "prettier --check \"**/*.{ts,tsx,json,md,mdx,mjs,cjs}\"",
"check-types": "tsc --noEmit",
"check-dependencies": "depcheck",
Expand Down
4 changes: 4 additions & 0 deletions components/tailwind.config.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['src/**/*.{ts,tsx,html}', 'index.html'],
theme: {
extend: {},
},
plugins: [require('daisyui')],
daisyui: {
themes: ['light'],
},
};

0 comments on commit 4439c78

Please sign in to comment.