@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
|
@@ -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
|
-
|
|
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;
|