opencode-sonarqube 0.2.2 → 0.2.3

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/dist/index.js +5 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -20118,7 +20118,11 @@ var SonarQubePlugin = async ({ client, directory, worktree }) => {
20118
20118
  `);
20119
20119
  } catch {}
20120
20120
  };
20121
- safeLog(`=== PLUGIN START === directory=${directory} worktree=${worktree} cwd=${process.cwd()}`);
20121
+ safeLog(`=== PLUGIN START ===`);
20122
+ safeLog(` directory param: "${directory}"`);
20123
+ safeLog(` worktree param: "${worktree}"`);
20124
+ safeLog(` process.cwd(): "${process.cwd()}"`);
20125
+ safeLog(` import.meta.url: "${import.meta.url}"`);
20122
20126
  const resolveValidDirectory = () => {
20123
20127
  if (worktree && worktree !== "/" && worktree.length > 1) {
20124
20128
  safeLog(`USING worktree=${worktree}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-sonarqube",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "OpenCode Plugin for SonarQube integration - Enterprise-level code quality from the start",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -38,7 +38,7 @@
38
38
  "homepage": "https://github.com/mguttmann/opencode-sonarqube#readme",
39
39
  "dependencies": {
40
40
  "@opencode-ai/plugin": "^1.1.34",
41
- "opencode-sonarqube": "0.2.2",
41
+ "opencode-sonarqube": "0.2.3",
42
42
  "zod": "^3.24.0"
43
43
  },
44
44
  "devDependencies": {