vite-plugin-opencode-assistant 1.1.13 → 1.1.15

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/lib/index.cjs CHANGED
@@ -225,7 +225,8 @@ function createOpenCodePlugin(options = {}) {
225
225
  splitMode: config.splitMode,
226
226
  serviceInstanceId,
227
227
  webPort: actualWebPort,
228
- projectRoot
228
+ projectRoot,
229
+ verbose: config.verbose
229
230
  });
230
231
  timer.end();
231
232
  return html.replace("</body>", `${widget}</body>`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vite-plugin-opencode-assistant",
3
- "version": "1.1.13",
3
+ "version": "1.1.15",
4
4
  "description": "Embed OpenCode Web UI in your Vite dev server for real-time code modification and preview",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",
@@ -37,15 +37,15 @@
37
37
  "dependencies": {
38
38
  "unplugin-vue-inspector": "^3.0.0",
39
39
  "execa": "^9.6.1",
40
- "@vite-plugin-opencode-assistant/components": "1.1.13",
41
- "@vite-plugin-opencode-assistant/opencode": "1.1.13",
42
- "@vite-plugin-opencode-assistant/shared": "1.1.13"
40
+ "@vite-plugin-opencode-assistant/opencode": "1.1.15",
41
+ "@vite-plugin-opencode-assistant/components": "1.1.15",
42
+ "@vite-plugin-opencode-assistant/shared": "1.1.15"
43
43
  },
44
44
  "peerDependencies": {
45
45
  "vite": ">=5.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@vite-plugin-opencode-assistant/client": "1.1.13"
48
+ "@vite-plugin-opencode-assistant/client": "1.1.15"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "pagoda-cli build && vite build -c vite.client.config.ts",