vite-file-include 1.1.0 → 1.2.0
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/README.md +621 -86
- package/package.json +12 -7
- package/src/index.js +394 -311
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-file-include",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A Vite plugin for file inclusion, loops, and conditionals in HTML files",
|
|
3
|
+
"version": "1.2.0",
|
|
4
|
+
"description": "A Vite plugin for file inclusion, loops, and conditionals in HTML files with hot reload support.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
"vite",
|
|
12
12
|
"plugin",
|
|
13
13
|
"file-include",
|
|
14
|
-
"html"
|
|
14
|
+
"html",
|
|
15
|
+
"templating",
|
|
16
|
+
"hot-reload"
|
|
15
17
|
],
|
|
16
18
|
"author": "Ahmed Abdulgid",
|
|
17
19
|
"license": "MIT",
|
|
@@ -20,10 +22,13 @@
|
|
|
20
22
|
"url": "https://github.com/abdulgidcoder/vite-file-include.git"
|
|
21
23
|
},
|
|
22
24
|
"peerDependencies": {
|
|
23
|
-
"vite": "^4.0.0"
|
|
25
|
+
"vite": "^4.0.0 || ^5.0.0"
|
|
24
26
|
},
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
27
|
+
"engines": {
|
|
28
|
+
"node": ">=16"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {},
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
28
33
|
}
|
|
29
34
|
}
|