sprawlify 0.0.95 → 0.0.97
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.
- package/dist/index.mjs +17 -10
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { existsSync } from "fs";
|
|
|
8
8
|
import prompts from "prompts";
|
|
9
9
|
import { faker } from "@faker-js/faker";
|
|
10
10
|
//#region package.json
|
|
11
|
-
var version = "0.0.
|
|
11
|
+
var version = "0.0.97";
|
|
12
12
|
//#endregion
|
|
13
13
|
//#region src/utils/file-helper.ts
|
|
14
14
|
const FILE_BACKUP_SUFFIX = ".bak";
|
|
@@ -537,7 +537,7 @@ export default defineConfig({
|
|
|
537
537
|
content: `/* @refresh reload */
|
|
538
538
|
import { render } from "solid-js/web"
|
|
539
539
|
import Root from "./root"
|
|
540
|
-
|
|
540
|
+
import "./globals.css"
|
|
541
541
|
|
|
542
542
|
const root = document.getElementById('root')
|
|
543
543
|
|
|
@@ -601,13 +601,14 @@ dist-ssr
|
|
|
601
601
|
"solid-js": "^1.9.11"
|
|
602
602
|
},
|
|
603
603
|
"devDependencies": {
|
|
604
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
604
605
|
"@types/node": "^24.12.0",
|
|
606
|
+
"tailwindcss": "^4.2.1",
|
|
605
607
|
"typescript": "~5.9.3",
|
|
606
608
|
"vite": "^8.0.0",
|
|
607
609
|
"vite-plugin-solid": "^2.11.11"
|
|
608
610
|
}
|
|
609
|
-
}
|
|
610
|
-
`
|
|
611
|
+
}`
|
|
611
612
|
},
|
|
612
613
|
{
|
|
613
614
|
path: "tsconfig.app.json",
|
|
@@ -763,10 +764,12 @@ dist-ssr
|
|
|
763
764
|
},
|
|
764
765
|
"devDependencies": {
|
|
765
766
|
"@sveltejs/vite-plugin-svelte": "^7.0.0",
|
|
767
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
766
768
|
"@tsconfig/svelte": "^5.0.8",
|
|
767
769
|
"@types/node": "^24.12.0",
|
|
768
|
-
"svelte": "^5.
|
|
770
|
+
"svelte": "^5.54.0",
|
|
769
771
|
"svelte-check": "^4.4.5",
|
|
772
|
+
"tailwindcss": "^4.2.1",
|
|
770
773
|
"typescript": "~5.9.3",
|
|
771
774
|
"vite": "^8.0.0"
|
|
772
775
|
}
|
|
@@ -836,9 +839,10 @@ export default {}`
|
|
|
836
839
|
path: "vite.config.ts",
|
|
837
840
|
content: `import { defineConfig } from "vite"
|
|
838
841
|
import { svelte } from "@sveltejs/vite-plugin-svelte"
|
|
842
|
+
import tailwindcss from "@tailwindcss/vite"
|
|
839
843
|
|
|
840
844
|
export default defineConfig({
|
|
841
|
-
plugins: [svelte()],
|
|
845
|
+
plugins: [tailwindcss(), svelte()],
|
|
842
846
|
})`
|
|
843
847
|
}
|
|
844
848
|
] }),
|
|
@@ -917,12 +921,14 @@ dist-ssr
|
|
|
917
921
|
"vue": "^3.5.30"
|
|
918
922
|
},
|
|
919
923
|
"devDependencies": {
|
|
924
|
+
"@tailwindcss/vite": "^4.2.1",
|
|
920
925
|
"@types/node": "^24.12.0",
|
|
921
926
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
922
927
|
"@vue/tsconfig": "^0.9.0",
|
|
928
|
+
"tailwindcss": "^4.2.1",
|
|
923
929
|
"typescript": "~5.9.3",
|
|
924
930
|
"vite": "^8.0.0",
|
|
925
|
-
"vue-tsc": "^3.2.
|
|
931
|
+
"vue-tsc": "^3.2.6"
|
|
926
932
|
}
|
|
927
933
|
}`
|
|
928
934
|
},
|
|
@@ -983,11 +989,12 @@ dist-ssr
|
|
|
983
989
|
},
|
|
984
990
|
{
|
|
985
991
|
path: "vite.config.ts",
|
|
986
|
-
content: `import { defineConfig } from
|
|
987
|
-
import vue from
|
|
992
|
+
content: `import { defineConfig } from "vite"
|
|
993
|
+
import vue from "@vitejs/plugin-vue"
|
|
994
|
+
import tailwindcss from "@tailwindcss/vite"
|
|
988
995
|
|
|
989
996
|
export default defineConfig({
|
|
990
|
-
plugins: [vue()],
|
|
997
|
+
plugins: [tailwindcss(), vue()],
|
|
991
998
|
})`
|
|
992
999
|
}
|
|
993
1000
|
] })
|