code-inspector-plugin 0.3.2-beta.1 → 0.4.0-beta.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 +3 -3
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -30,11 +30,11 @@ Click the element on the page, it can automatically open the code editor and pos
|
|
|
30
30
|
## 🚀 Install
|
|
31
31
|
|
|
32
32
|
```perl
|
|
33
|
-
npm i
|
|
33
|
+
npm i code-inspector-plugin -D
|
|
34
34
|
# or
|
|
35
|
-
yarn add
|
|
35
|
+
yarn add code-inspector-plugin -D
|
|
36
36
|
# or
|
|
37
|
-
pnpm add
|
|
37
|
+
pnpm add code-inspector-plugin -D
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
## 🌈 Usage
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "code-inspector-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0-beta.1",
|
|
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
|
-
"vite-code-inspector-plugin": "0.
|
|
44
|
-
"webpack-code-inspector-plugin": "0.
|
|
42
|
+
"code-inspector-core": "0.4.0-beta.1",
|
|
43
|
+
"vite-code-inspector-plugin": "0.4.0-beta.1",
|
|
44
|
+
"webpack-code-inspector-plugin": "0.4.0-beta.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/node": "^16.0.1",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsc && vite build",
|
|
54
|
-
"pub": "pnpm publish"
|
|
54
|
+
"pub": "pnpm publish",
|
|
55
|
+
"pub:beta": "pnpm publish --tag beta"
|
|
55
56
|
}
|
|
56
57
|
}
|