code-inspector-plugin 0.2.0 → 0.3.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 +7 -10
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -24,15 +24,10 @@
|
|
|
24
24
|
|
|
25
25
|
## 💻 在线体验
|
|
26
26
|
|
|
27
|
-
|
|
28
|
-
[
|
|
29
|
-
|
|
30
|
-
](https://stackblitz.com/edit/
|
|
31
|
-
|
|
32
|
-
<b>react online demo:</b><br/>
|
|
33
|
-
[
|
|
34
|
-

|
|
35
|
-
](https://stackblitz.com/edit/vitejs-vite-svtwrr?file=vite.config.ts)
|
|
27
|
+
- [vue online demo](https://stackblitz.com/edit/vitejs-vite-4pseos?file=vite.config.ts)
|
|
28
|
+
- [react online demo](https://stackblitz.com/edit/vitejs-vite-svtwrr?file=vite.config.ts)
|
|
29
|
+
- [preact online demo](https://stackblitz.com/edit/vitejs-vite-iyawbf?file=vite.config.ts)
|
|
30
|
+
- [solid online demo](https://stackblitz.com/edit/solidjs-templates-6u76jn?file=vite.config.ts)
|
|
36
31
|
|
|
37
32
|
## 🚀 安装
|
|
38
33
|
|
|
@@ -59,7 +54,9 @@ pnpm add code-inspector-plugin -D
|
|
|
59
54
|
- 当前支持以下 Web 框架<br />
|
|
60
55
|
✅ vue2<br />
|
|
61
56
|
✅ vue3<br />
|
|
62
|
-
✅ react
|
|
57
|
+
✅ react<br />
|
|
58
|
+
✅ preact<br />
|
|
59
|
+
✅ solid
|
|
63
60
|
- 当前支持以下代码编辑器<br />
|
|
64
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/)
|
|
65
62
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-inspector-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.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
|
-
"
|
|
44
|
-
"code-inspector-
|
|
42
|
+
"code-inspector-core": "0.3.0",
|
|
43
|
+
"webpack-code-inspector-plugin": "0.3.0",
|
|
44
|
+
"vite-code-inspector-plugin": "0.3.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^16.0.1",
|