vite-plugin-vue-inspector-plus 1.0.0-alpha.2 → 1.0.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 +1 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -20,17 +20,10 @@ This plugin needs to be used with [Vue Devtools](https://github.com/vuejs/devtoo
20
20
 
21
21
  import { defineConfig } from 'vite';
22
22
  import VueDevTools from 'vite-plugin-vue-devtools';
23
- // import VueInspector from 'vite-plugin-vue-inspector';
24
23
  import VueInspectorPlus from 'vite-plugin-vue-inspector-plus';
25
24
 
26
25
  export default defineConfig({
27
- plugins: [
28
- VueDevTools(),
29
- // VueInspector(),
30
- VueInspectorPlus({
31
- // options
32
- }),
33
- ],
26
+ plugins: [VueDevTools(), VueInspectorPlus()],
34
27
  });
35
28
  ```
36
29
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vite-plugin-vue-inspector-plus",
3
3
  "type": "module",
4
- "version": "1.0.0-alpha.2",
4
+ "version": "1.0.0",
5
5
  "description": "Add a shortcut dropdown menu for Vue Inspector.",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.js",
@@ -46,4 +46,4 @@
46
46
  "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0",
47
47
  "vue": "^3.0.0"
48
48
  }
49
- }
49
+ }