Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "stitch-root",
"private": true,
"type": "module",
"version": "0.1.0",
"version": "0.1.1",
"workspaces": [
"packages/*"
],
Expand Down
4 changes: 3 additions & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@google/stitch-sdk",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"private": false,
"description": "Generate UI screens from text prompts and extract their HTML and screenshots programmatically.",
Expand Down Expand Up @@ -39,6 +39,8 @@
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo",
"!dist/test",
"!dist/**/*.tsbuildinfo",
"!dist/package.json",
"README.md"
],
Expand Down
4 changes: 2 additions & 2 deletions scripts/publish-readiness.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ console.log("\n📐 Pack Size");
const totalSize = packData[0].unpackedSize;
const totalKB = Math.round(totalSize / 1024);

check(`pack size is reasonable (${totalKB} KB, limit: 250 KB)`, () => {
assert(totalSize < 250 * 1024, `Pack is ${totalKB} KB — too large for a library`);
check(`pack size is reasonable (${totalKB} KB, limit: 300 KB)`, () => {
assert(totalSize < 300 * 1024, `Pack is ${totalKB} KB — too large for a library`);
});

const fileCount = packFiles.length;
Expand Down
Loading