Skip to content

Commit

Permalink
fix: add ui-flowbite module
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Aug 28, 2023
1 parent 7aec3be commit aedefb3
Show file tree
Hide file tree
Showing 13 changed files with 734 additions and 33 deletions.
3 changes: 1 addition & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"cssnano": "6.0.1",
"d3-force": "3.0.0",
"d3-scale": "4.0.2",
"daisyui": "3.6.3",
"date-fns": "2.30.0",
"eslint": "8.48.0",
"eslint-config-custom": "workspace:*",
Expand Down Expand Up @@ -88,7 +87,7 @@
"tailwindcss-animate": "1.0.6",
"tslib": "2.6.2",
"typescript": "5.2.2",
"ui": "workspace:*",
"ui": "workspace:ui-flowbite@*",
"vite": "4.4.9",
"vite-plugin-pwa": "0.16.4",
"vitest": "0.34.3",
Expand Down
31 changes: 2 additions & 29 deletions apps/web/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion apps/web/tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import daisyui from 'daisyui';
// import daisyui from 'daisyui';
import baseConfig from 'tailwind-config/tailwind.config';
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
Expand Down
1 change: 1 addition & 0 deletions docs/awesome-sveltekit.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ Awesome **SvelteKit** Links

- [Svelte Sirens](https://github.com/Svelte-Sirens/svelte-sirens)
- [Usagizmo turbo Monorepo](https://github.com/usagizmo/webapp-template)
- [url-shortener turbo Monorepo](https://github.com/koolskateguy89/url-shortener)
- [SvelteKit stack for enterprise](https://github.com/joysofcode/enterprise-stack)
- [SvelteKit SaaS Demo](https://github.com/joshnuss/sveltekit-saas) - Auth.js, Prisma, Stripe
- [SvelteKit Starter with trpc, lucia, skeleton and svelte-headless-table](https://github.com/widiu7omo/my-kit)
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
"clean": "turbo clean && rm -rf node_modules",
"preinstall": "npx only-allow pnpm"
},
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"eslint": "8.48.0",
"eslint-config-custom": "workspace:*",
Expand All @@ -28,4 +32,4 @@
"type": "git",
"url": "https://github.com/xmlking/spectacular"
}
}
}
3 changes: 3 additions & 0 deletions packages/ui-flowbite/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
extends: ['custom']
};
20 changes: 20 additions & 0 deletions packages/ui-flowbite/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"name": "ui-flowbite",
"version": "0.0.0",
"description": "Styles and components for use in svelte websites",
"type": "module",
"module": "src/index.ts",
"svelte": "src/index.ts",
"license": "MIT",
"scripts": {
"//TODO": "https://github.com/timshinsergey/turbo-strapi-nextjs-starter/blob/main/packages/ui/package.json",
"lint": "prettier --check --ignore-path=../../.prettierignore . && eslint \".\"",
"format": "prettier --write --ignore-path=../../.prettierignore ."
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"svelte": "4.2.0",
"tailwind-config": "workspace:*",
"tailwindcss": "3.3.3"
}
}
Loading

0 comments on commit aedefb3

Please sign in to comment.