Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

dont error out on files too big on cli

authored by

nekomimi.pet and committed by
Tangled
1b861883 8f7b0756

+2 -3
+2 -3
cli/commands/deploy.ts
··· 513 513 // Check individual file sizes 514 514 for (const file of files) { 515 515 if (file.size > MAX_FILE_SIZE) { 516 - throw new Error( 517 - `File ${file.relativePath} exceeds max size (${formatBytes(file.size)} > ${formatBytes(MAX_FILE_SIZE)})`, 518 - ) 516 + console.log(pc.yellow(`\nWarning: ${file.relativePath} exceeds max size (${formatBytes(file.size)} > ${formatBytes(MAX_FILE_SIZE)})`)) 517 + console.log(pc.yellow('This file may not be cached by the hosting service.\n')) 519 518 } 520 519 } 521 520