create-comate-pagebuilder 1.0.13 → 1.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-comate-pagebuilder",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Create a modern, minimalist React + Vite + Tailwind CSS project",
5
5
  "type": "commonjs",
6
6
  "bin": {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "pagebuilder-react-template",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "pagebuilder-react-template",
9
- "version": "1.0.13",
9
+ "version": "1.0.14",
10
10
  "dependencies": {
11
11
  "clsx": "^2.1.0",
12
12
  "framer-motion": "^12.23.24",
@@ -22,7 +22,8 @@
22
22
  "autoprefixer": "^10.4.17",
23
23
  "postcss": "^8.4.35",
24
24
  "tailwindcss": "^3.4.1",
25
- "vite": "^5.1.4"
25
+ "vite": "^5.1.4",
26
+ "vite-plugin-singlefile": "^2.3.0"
26
27
  },
27
28
  "optionalDependencies": {
28
29
  "animate.css": "^4.1.1",
@@ -2713,6 +2714,23 @@
2713
2714
  }
2714
2715
  }
2715
2716
  },
2717
+ "node_modules/vite-plugin-singlefile": {
2718
+ "version": "2.3.0",
2719
+ "resolved": "https://registry.npmmirror.com/vite-plugin-singlefile/-/vite-plugin-singlefile-2.3.0.tgz",
2720
+ "integrity": "sha512-DAcHzYypM0CasNLSz/WG0VdKOCxGHErfrjOoyIPiNxTPTGmO6rRD/te93n1YL/s+miXq66ipF1brMBikf99c6A==",
2721
+ "dev": true,
2722
+ "license": "MIT",
2723
+ "dependencies": {
2724
+ "micromatch": "^4.0.8"
2725
+ },
2726
+ "engines": {
2727
+ "node": ">18.0.0"
2728
+ },
2729
+ "peerDependencies": {
2730
+ "rollup": "^4.44.1",
2731
+ "vite": "^5.4.11 || ^6.0.0 || ^7.0.0"
2732
+ }
2733
+ },
2716
2734
  "node_modules/yallist": {
2717
2735
  "version": "3.1.1",
2718
2736
  "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pagebuilder-react-template",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "vite",
@@ -26,7 +26,8 @@
26
26
  "autoprefixer": "^10.4.17",
27
27
  "postcss": "^8.4.35",
28
28
  "tailwindcss": "^3.4.1",
29
- "vite": "^5.1.4"
29
+ "vite": "^5.1.4",
30
+ "vite-plugin-singlefile": "^2.3.0"
30
31
  },
31
32
  "optionalDependencies": {
32
33
  "animate.css": "^4.1.1",
@@ -1,9 +1,10 @@
1
1
  import { defineConfig } from 'vite'
2
2
  import react from '@vitejs/plugin-react'
3
+ import { viteSingleFile } from 'vite-plugin-singlefile'
3
4
  import path from 'path'
4
5
 
5
6
  export default defineConfig({
6
- plugins: [react()],
7
+ plugins: [react(), viteSingleFile()],
7
8
  resolve: {
8
9
  alias: {
9
10
  '@': path.resolve(__dirname, './src'),