fuma 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +2 -3
package/README.md CHANGED
@@ -10,13 +10,13 @@ echo "Enter mysql username : " && read mysql_username
10
10
 
11
11
  pn create svelte@latest $project_name
12
12
  cd $project_name
13
- pn i fuma
13
+ pn install
14
+ pn install fuma prisma lucia oslo @lucia-auth/adapter-prisma
14
15
  px svelte-add@latest tailwindcss --tailwindcss-daisyui
15
16
  sed -i "s|\}'\],|\}', './node_modules/**/fuma/dist/**/*.svelte'\],|g" tailwind.config.cjs
16
17
  sed -i 's|"singleQuote": true,|"singleQuote": true,\n\t"semi": false,|g' .prettierrc
17
18
 
18
19
  # Prisma
19
- pn i prisma
20
20
  px prisma init --datasource-provider mysql
21
21
 
22
22
  mkdir -p ./src/lib/server
@@ -37,7 +37,6 @@ node -e "\
37
37
  "
38
38
 
39
39
  # Authentication
40
- pn i lucia oslo @lucia-auth/adapter-prisma
41
40
  auth="src/routes/auth"
42
41
  mkdir -p "./$auth"
43
42
  wget "$source/src/app.d.ts" -O ./src/app.d.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fuma",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "My fullstack material build with sveltekit, daisyui, zod and more",
5
5
  "author": {
6
6
  "name": "Jonas Voisard",
@@ -94,7 +94,6 @@
94
94
  "format": "prettier --write .",
95
95
  "migrate": "prisma migrate dev",
96
96
  "generate": "prisma generate",
97
- "studio": "prisma studio",
98
- "postinstall": "prisma migrate deploy && prisma generate"
97
+ "studio": "prisma studio"
99
98
  }
100
99
  }