opencode-sonarqube 0.2.4 → 0.2.6
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/dist/index.js +5 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -4133,7 +4133,9 @@ async function hasProjectState(directory) {
|
|
|
4133
4133
|
}
|
|
4134
4134
|
async function loadProjectState(directory) {
|
|
4135
4135
|
const statePath = getStatePath(directory);
|
|
4136
|
-
|
|
4136
|
+
const stack = new Error().stack?.split(`
|
|
4137
|
+
`).slice(1, 5).join(" <- ") || "no stack";
|
|
4138
|
+
logger4.info(">>> loadProjectState called", { directory, statePath, caller: stack });
|
|
4137
4139
|
const exists = await Bun.file(statePath).exists();
|
|
4138
4140
|
logger4.info("State file exists check", { exists, statePath });
|
|
4139
4141
|
if (!exists) {
|
|
@@ -20571,6 +20573,8 @@ Git operation completed with changes. Consider running:
|
|
|
20571
20573
|
return;
|
|
20572
20574
|
}
|
|
20573
20575
|
const dir = getDirectory();
|
|
20576
|
+
safeLog(`system.transform: getDirectory() returned: "${dir}"`);
|
|
20577
|
+
safeLog(`system.transform: effectiveDirectory is: "${effectiveDirectory}"`);
|
|
20574
20578
|
const state = await getProjectState(dir);
|
|
20575
20579
|
if (!state?.projectKey)
|
|
20576
20580
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-sonarqube",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
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.
|
|
41
|
+
"opencode-sonarqube": "0.2.6",
|
|
42
42
|
"zod": "^3.24.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|