@askexenow/exe-os 0.8.20 → 0.8.21
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/cli.js +1 -1
- package/dist/bin/install.js +1 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -482,7 +482,7 @@ function resolvePackageRoot() {
|
|
|
482
482
|
if (existsSync4(pkgPath)) {
|
|
483
483
|
try {
|
|
484
484
|
const pkg = JSON.parse(readFileSync2(pkgPath, "utf-8"));
|
|
485
|
-
if (pkg.name === "exe-os") return dir;
|
|
485
|
+
if (pkg.name === "@askexenow/exe-os" || pkg.name === "exe-os") return dir;
|
|
486
486
|
} catch {
|
|
487
487
|
}
|
|
488
488
|
}
|
package/dist/bin/install.js
CHANGED
|
@@ -209,7 +209,7 @@ function resolvePackageRoot() {
|
|
|
209
209
|
if (existsSync4(pkgPath)) {
|
|
210
210
|
try {
|
|
211
211
|
const pkg = JSON.parse(readFileSync2(pkgPath, "utf-8"));
|
|
212
|
-
if (pkg.name === "exe-os") return dir;
|
|
212
|
+
if (pkg.name === "@askexenow/exe-os" || pkg.name === "exe-os") return dir;
|
|
213
213
|
} catch {
|
|
214
214
|
}
|
|
215
215
|
}
|
package/package.json
CHANGED