alabjs-vite-plugin 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.
- package/README.md +9 -0
- package/package.json +11 -2
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# alabjs-vite-plugin
|
|
2
|
+
|
|
3
|
+
> Vite plugin that wires AlabJS's Rust compiler into the Vite transform pipeline.
|
|
4
|
+
|
|
5
|
+
This package is used internally by AlabJS. You do not need to install it manually — it is included as a dependency of `alabjs`.
|
|
6
|
+
|
|
7
|
+
## License
|
|
8
|
+
|
|
9
|
+
MIT © [ThinkGrid Labs](https://github.com/thinkgrid-labs)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "alabjs-vite-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Vite plugin that wires AlabJS's Rust compiler into the transform pipeline",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -42,5 +42,14 @@
|
|
|
42
42
|
"repository": {
|
|
43
43
|
"type": "git",
|
|
44
44
|
"url": "https://github.com/thinkgrid-labs/alabjs.git"
|
|
45
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"vite",
|
|
48
|
+
"vite-plugin",
|
|
49
|
+
"alabjs",
|
|
50
|
+
"react",
|
|
51
|
+
"rust",
|
|
52
|
+
"oxc"
|
|
53
|
+
],
|
|
54
|
+
"author": "Dennis Paler <dennis@thinkgrid.dev>"
|
|
46
55
|
}
|