@mcesystems/apple-kit 1.0.57 → 1.0.58
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 +2 -2
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -33595,8 +33595,8 @@ import { readFile } from "node:fs/promises";
|
|
|
33595
33595
|
import { dirname, isAbsolute, join as join6, resolve } from "node:path";
|
|
33596
33596
|
import { fileURLToPath } from "node:url";
|
|
33597
33597
|
function resolveEnvPlistDir() {
|
|
33598
|
-
const envPath = join6(
|
|
33599
|
-
if (!envPath) {
|
|
33598
|
+
const envPath = join6(getResourcesPath(), "plist");
|
|
33599
|
+
if (!existsSync3(envPath)) {
|
|
33600
33600
|
return null;
|
|
33601
33601
|
}
|
|
33602
33602
|
const absolutePath = isAbsolute(envPath) ? envPath : join6(process.cwd(), envPath);
|