code-inspector-plugin 0.12.1 → 0.13.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 +5 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="https://github.com/zh-lx/code-inspector/assets/73059627/842c3e88-dca7-4743-854c-d61093d3d34f" width=160px" style="margin-bottom: 12px;" />
|
|
2
|
+
<img src="https://github.com/zh-lx/code-inspector/assets/73059627/842c3e88-dca7-4743-854c-d61093d3d34f" width="160px" style="margin-bottom: 12px;" />
|
|
3
3
|
|
|
4
4
|
<p align="center">
|
|
5
5
|
<h2>code-inspector</h2>
|
|
@@ -28,6 +28,7 @@ Click the element on the page, it can automatically open the code editor and pos
|
|
|
28
28
|
- [react online demo](https://stackblitz.com/edit/vitejs-vite-svtwrr?file=vite.config.ts)
|
|
29
29
|
- [preact online demo](https://stackblitz.com/edit/vitejs-vite-iyawbf?file=vite.config.ts)
|
|
30
30
|
- [solid online demo](https://stackblitz.com/edit/solidjs-templates-6u76jn?file=vite.config.ts)
|
|
31
|
+
- [qwik online demo](https://stackblitz.com/edit/vitejs-vite-antzds?file=vite.config.ts)
|
|
31
32
|
- [svelte online demo](https://stackblitz.com/edit/vitejs-vite-zoncqr?file=vite.config.ts)
|
|
32
33
|
- [astro online demo](https://stackblitz.com/edit/withastro-astro-f5xq1t?file=astro.config.mjs)
|
|
33
34
|
|
|
@@ -46,6 +47,7 @@ The following are which compilers, web frameworks and editors we supported now:
|
|
|
46
47
|
✅ react<br />
|
|
47
48
|
✅ preact<br />
|
|
48
49
|
✅ solid<br />
|
|
50
|
+
✅ qwik<br />
|
|
49
51
|
✅ svelte<br />
|
|
50
52
|
✅ astro
|
|
51
53
|
- The following code editors are currently supported:<br />
|
|
@@ -283,7 +285,8 @@ Please check here for more usage information: [code-inspector-plugin configurati
|
|
|
283
285
|
## 👨💻 Contributors
|
|
284
286
|
|
|
285
287
|
Special thanks to the contributors of this project:<br />
|
|
286
|
-
|
|
288
|
+
|
|
289
|
+
<img src="https://contrib.rocks/image?repo=zh-lx/code-inspector" height="40" />
|
|
287
290
|
|
|
288
291
|
## 📧 Communication and Feedback
|
|
289
292
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-inspector-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"typings": "./types/index.d.ts",
|
|
@@ -39,9 +39,9 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"chalk": "4.1.1",
|
|
42
|
-
"
|
|
43
|
-
"code-inspector-
|
|
44
|
-
"
|
|
42
|
+
"code-inspector-core": "0.13.0",
|
|
43
|
+
"vite-code-inspector-plugin": "0.13.0",
|
|
44
|
+
"webpack-code-inspector-plugin": "0.13.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^16.0.1",
|