vite-plugin-solid 2.3.2 → 2.3.4
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 +1 -1
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -157,7 +157,7 @@ At this stage it's still early work but provide basic HMR. In order to get the b
|
|
|
157
157
|
|
|
158
158
|
- The entrypoint can't benefit from HMR yet and will force a hard reload of the entire app. This is still really fast thanks to browser caching.
|
|
159
159
|
|
|
160
|
-
If at least one of this point is blocking to you, you can revert to the old behavior
|
|
160
|
+
If at least one of this point is blocking to you, you can revert to the old behavior by [opting out the automatic HMR](#options) and placing the following snippet in your entry point:
|
|
161
161
|
|
|
162
162
|
```jsx
|
|
163
163
|
const dispose = render(() => <App />, document.body);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vite-plugin-solid",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "solid-js integration plugin for vite 3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -16,12 +16,6 @@
|
|
|
16
16
|
"default": "./dist/cjs/index.cjs",
|
|
17
17
|
"require": "./dist/cjs/index.cjs"
|
|
18
18
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "rollup -c && tsc --emitDeclarationOnly",
|
|
21
|
-
"dev": "rollup -c -w",
|
|
22
|
-
"prepublishOnly": "pnpm build",
|
|
23
|
-
"check": "package-check"
|
|
24
|
-
},
|
|
25
19
|
"repository": {
|
|
26
20
|
"type": "git",
|
|
27
21
|
"url": "git+https://github.com/solidjs/vite-plugin-solid.git"
|
|
@@ -67,5 +61,10 @@
|
|
|
67
61
|
"solid-js": "^1.3.17",
|
|
68
62
|
"vite": "^3.0.0"
|
|
69
63
|
},
|
|
70
|
-
"packageManager": "pnpm@6.24.4"
|
|
71
|
-
|
|
64
|
+
"packageManager": "pnpm@6.24.4",
|
|
65
|
+
"scripts": {
|
|
66
|
+
"build": "rollup -c && tsc --emitDeclarationOnly",
|
|
67
|
+
"dev": "rollup -c -w",
|
|
68
|
+
"check": "package-check"
|
|
69
|
+
}
|
|
70
|
+
}
|