code-inspector-plugin 0.5.2 → 0.6.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 +3 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -26,6 +26,7 @@ Click the element on the page, it can automatically open the code editor and pos
|
|
|
26
26
|
- [react online demo](https://stackblitz.com/edit/vitejs-vite-svtwrr?file=vite.config.ts)
|
|
27
27
|
- [preact online demo](https://stackblitz.com/edit/vitejs-vite-iyawbf?file=vite.config.ts)
|
|
28
28
|
- [solid online demo](https://stackblitz.com/edit/solidjs-templates-6u76jn?file=vite.config.ts)
|
|
29
|
+
- [svelte online demo](https://stackblitz.com/edit/vitejs-vite-zoncqr?file=vite.config.ts)
|
|
29
30
|
|
|
30
31
|
## 🚀 Install
|
|
31
32
|
|
|
@@ -54,7 +55,8 @@ The following are which compilers, web frameworks and editors we supported now:
|
|
|
54
55
|
✅ vue3<br />
|
|
55
56
|
✅ react<br />
|
|
56
57
|
✅ preact<br />
|
|
57
|
-
✅ solid
|
|
58
|
+
✅ solid<br />
|
|
59
|
+
✅ svelte
|
|
58
60
|
- The following code editors are currently supported:<br />
|
|
59
61
|
[VSCode](https://code.visualstudio.com/) | [Visual Studio Code - Insiders](https://code.visualstudio.com/insiders/) | [WebStorm](https://www.jetbrains.com/webstorm/) | [Atom](https://atom.io/) | [HBuilderX](https://www.dcloud.io/hbuilderx.html) | [PhpStorm](https://www.jetbrains.com/phpstorm/) | [PyCharm](https://www.jetbrains.com/pycharm/) | [IntelliJ IDEA](https://www.jetbrains.com/idea/)
|
|
60
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-inspector-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.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
|
-
"code-inspector-core": "0.
|
|
43
|
-
"
|
|
44
|
-
"
|
|
42
|
+
"code-inspector-core": "0.6.0",
|
|
43
|
+
"webpack-code-inspector-plugin": "0.6.0",
|
|
44
|
+
"vite-code-inspector-plugin": "0.6.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^16.0.1",
|