@everystack/cli 0.2.34 → 0.2.35

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everystack/cli",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "description": "CLI and OTA updates for Expo apps on everystack",
5
5
  "license": "AGPL-3.0-only",
6
6
  "publishConfig": {
@@ -430,10 +430,7 @@ export async function updateCommand(flags: UpdateFlags & Record<string, string>)
430
430
  info('Add `mediaBucket: media.name` to the return block in sst.config.ts and redeploy.');
431
431
  } else {
432
432
  step('Syncing media assets...');
433
- // @ts-ignore minimatch lacks type declarations in this project
434
- const minimatchMod = await import('minimatch');
435
- const minimatch: (p: string, pattern: string, opts?: { matchBase?: boolean }) => boolean =
436
- minimatchMod.minimatch || minimatchMod.default || minimatchMod;
433
+ const { minimatch } = await import('minimatch');
437
434
  const MEDIA_CONCURRENCY = 10;
438
435
  let mediaUploaded = 0;
439
436
  let mediaSkipped = 0;