Skip to content

Commit

Permalink
refactor(cli): unexport UPLOAD_WATCH consts
Browse files Browse the repository at this point in the history
  • Loading branch information
eligao committed Dec 30, 2024
1 parent f1d2557 commit fe71f73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/src/commands/asset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import path, { basename } from 'node:path';
import { Queue } from 'src/queue';
import { BaseOptions, Batcher, authenticate, crawl, sha1 } from 'src/utils';

export const UPLOAD_WATCH_BATCH_SIZE = 100;
export const UPLOAD_WATCH_DEBOUNCE_TIME_MS = 10_000;
const UPLOAD_WATCH_BATCH_SIZE = 100;
const UPLOAD_WATCH_DEBOUNCE_TIME_MS = 10_000;

const s = (count: number) => (count === 1 ? '' : 's');

Expand Down

0 comments on commit fe71f73

Please sign in to comment.