@next-vibe/checker 1.0.15 → 1.0.16
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/bin/vibe-runtime.js +3 -3
- package/.dist/bin/vibe-runtime.js.map +3 -3
- package/package.json +1 -1
- package/src/app/api/[locale]/system/check/config/repository.ts +2 -0
- package/src/app/api/[locale]/system/check/test-project/bun.lock +2 -2
- package/src/app/api/[locale]/system/check/test-project/package.json +1 -1
|
@@ -37218,12 +37218,12 @@ class ConfigRepositoryImpl {
|
|
|
37218
37218
|
return sourcePath;
|
|
37219
37219
|
}
|
|
37220
37220
|
} else {
|
|
37221
|
-
const compiledPath = resolve12(process.cwd(), "node_modules", "@next-vibe", "checker", "oxlint-plugins", fileName);
|
|
37221
|
+
const compiledPath = resolve12(process.cwd(), "node_modules", "@next-vibe", "checker", ".dist", "oxlint-plugins", fileName);
|
|
37222
37222
|
if (existsSync11(compiledPath)) {
|
|
37223
37223
|
return compiledPath;
|
|
37224
37224
|
}
|
|
37225
37225
|
}
|
|
37226
|
-
return extension === "ts" ? resolve12(process.cwd(), "src", "app", "api", "[locale]", "system", "check", "oxlint", "plugins", baseName, "src", "index.ts") : resolve12(process.cwd(), "node_modules", "@next-vibe", "checker", "oxlint-plugins", fileName);
|
|
37226
|
+
return extension === "ts" ? resolve12(process.cwd(), "src", "app", "api", "[locale]", "system", "check", "oxlint", "plugins", baseName, "src", "index.ts") : resolve12(process.cwd(), "node_modules", "@next-vibe", "checker", ".dist", "oxlint-plugins", fileName);
|
|
37227
37227
|
}
|
|
37228
37228
|
if (pluginPath.startsWith("/")) {
|
|
37229
37229
|
return pluginPath;
|
|
@@ -55484,4 +55484,4 @@ export {
|
|
|
55484
55484
|
binaryStartTime
|
|
55485
55485
|
};
|
|
55486
55486
|
|
|
55487
|
-
//# debugId=
|
|
55487
|
+
//# debugId=7F74571737942F6464756E2164756E21
|