Skip to content

Commit

Permalink
seprated db and tailwind config in package
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalmishraa committed Apr 19, 2024
1 parent ad8de74 commit 4f96907
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 0 deletions.
File renamed without changes.
14 changes: 14 additions & 0 deletions packages/db/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "@repo/db",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.12.1"
}
}
File renamed without changes.
File renamed without changes.
10 changes: 10 additions & 0 deletions packages/tailwind-Config/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"name": "@repo/tailwind-config",
"version": "0.0.0",
"main": "index.js",
"license": "MIT",
"files": [
"postcss.config.js",
"tailwind.config.js"
]
}
6 changes: 6 additions & 0 deletions packages/tailwind-Config/postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}
11 changes: 11 additions & 0 deletions packages/tailwind-Config/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {},
},
plugins: [],
}

0 comments on commit 4f96907

Please sign in to comment.