@polka-codes/runner 0.9.93 → 0.9.95
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 +1 -1
package/dist/index.js
CHANGED
|
@@ -42783,7 +42783,7 @@ var {
|
|
|
42783
42783
|
Help
|
|
42784
42784
|
} = import__.default;
|
|
42785
42785
|
// package.json
|
|
42786
|
-
var version = "0.9.
|
|
42786
|
+
var version = "0.9.95";
|
|
42787
42787
|
|
|
42788
42788
|
// src/runner.ts
|
|
42789
42789
|
import { execSync } from "node:child_process";
|
|
@@ -68906,6 +68906,10 @@ ${error48}`);
|
|
|
68906
68906
|
const config3 = readConfig(path);
|
|
68907
68907
|
configs.push(config3);
|
|
68908
68908
|
} catch (error48) {
|
|
68909
|
+
const errorCode = error48?.code;
|
|
68910
|
+
if (errorCode === "ENOENT") {
|
|
68911
|
+
continue;
|
|
68912
|
+
}
|
|
68909
68913
|
console.error(`Error loading config file: ${path}
|
|
68910
68914
|
${error48}`);
|
|
68911
68915
|
throw error48;
|