code-inspector-plugin 0.3.2 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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 webpack-code-inspector-plugin -D
33
+ npm i code-inspector-plugin -D
34
34
  # or
35
- yarn add webpack-code-inspector-plugin -D
35
+ yarn add code-inspector-plugin -D
36
36
  # or
37
- pnpm add webpack-code-inspector-plugin -D
37
+ pnpm add code-inspector-plugin -D
38
38
  ```
39
39
 
40
40
  ## 🌈 Usage
@@ -46,7 +46,7 @@ Please check here for complete access and usage information: [code-inspector-plu
46
46
  The following are which compilers, web frameworks and editors we supported now:
47
47
 
48
48
  - The following bundlers are currently supported:<br />
49
- ✅ webpack(3.x/4.x/5.x)<br />
49
+ ✅ webpack<br />
50
50
  ✅ vite<br />
51
51
  ✅ rspack
52
52
  - The following Web frameworks are currently supported:<br />
@@ -60,4 +60,4 @@ The following are which compilers, web frameworks and editors we supported now:
60
60
 
61
61
  ## 📧 Communication and Feedback
62
62
 
63
- For any usage issues, please leave a message below my [Twitter](https://twitter.com/zhulxing312147) post or [submit an issue](https://github.com/zh-lx/code-inspector/issues) on Github.
63
+ For any usage issues, please leave a message below my [Twitter](https://twitter.com/zhulxing312147) post or [submit an issue](https://github.com/zh-lx/code-inspector/issues) on Github.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "code-inspector-plugin",
3
- "version": "0.3.2",
3
+ "version": "0.4.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.3.2",
43
- "webpack-code-inspector-plugin": "0.3.2",
44
- "vite-code-inspector-plugin": "0.3.2"
42
+ "code-inspector-core": "0.4.0",
43
+ "webpack-code-inspector-plugin": "0.4.0",
44
+ "vite-code-inspector-plugin": "0.4.0"
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
  }