@dev-angsu/cli 1.0.3 → 1.0.4
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/package.json +1 -1
- package/src/utils/engine.js +2 -1
package/package.json
CHANGED
package/src/utils/engine.js
CHANGED
|
@@ -143,7 +143,8 @@ const currentFile = fileURLToPath(import.meta.url);
|
|
|
143
143
|
// Check if run directly (robust against symlinks/path variations in CI)
|
|
144
144
|
if (
|
|
145
145
|
process.argv[1] === currentFile ||
|
|
146
|
-
process.argv[1].endsWith("src/utils/engine.js")
|
|
146
|
+
process.argv[1].endsWith("src/utils/engine.js") ||
|
|
147
|
+
process.argv[1].endsWith("review-code")
|
|
147
148
|
) {
|
|
148
149
|
run();
|
|
149
150
|
}
|