@react-native-reusables/cli 0.5.3 → 0.5.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/bin.cjs +5 -5
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -58446,12 +58446,12 @@ function isMetadataYarnClassic(metadataPath) {
|
|
|
58446
58446
|
}
|
|
58447
58447
|
|
|
58448
58448
|
// src/services/package-manager.ts
|
|
58449
|
-
var PACKAGE_MANAGERS = ["npm", "bun", "pnpm", "yarn", "yarn
|
|
58449
|
+
var PACKAGE_MANAGERS = ["npm", "bun", "pnpm", "yarn@berry", "yarn"];
|
|
58450
58450
|
var BINARY_RUNNERS = {
|
|
58451
|
-
npm: ["npx"
|
|
58452
|
-
bun: ["bunx", "--bun"
|
|
58453
|
-
pnpm: ["pnpm", "dlx"
|
|
58454
|
-
yarn: ["yarn"
|
|
58451
|
+
npm: ["npx"],
|
|
58452
|
+
bun: ["bunx", "--bun"],
|
|
58453
|
+
pnpm: ["pnpm", "dlx"],
|
|
58454
|
+
yarn: ["yarn"],
|
|
58455
58455
|
"yarn@berry": ["yarn", "dlx"]
|
|
58456
58456
|
};
|
|
58457
58457
|
var detectPackageManager = (cwd2) => Effect_exports.tryPromise({
|