Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rossrobino committed Aug 29, 2024
1 parent 6e2dd06 commit 41af98a
Show file tree
Hide file tree
Showing 13 changed files with 164 additions and 94 deletions.
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"ignore": ["domco-docs", "domco-tester"]
}
6 changes: 6 additions & 0 deletions .changeset/silent-turkeys-love.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"create-domco": patch
"domco": patch
---

Bump dependencies
12 changes: 11 additions & 1 deletion apps/docs/src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,19 @@ const BundleSize: FC = async () => {
const res = await fetch(
"https://bundlephobia.com/api/size?package=domco@latest",
);
const json = (await res.json()) as {

let json: {
assets?: [{ size: number }];
};

try {
json = await res.json();
} catch (error) {
console.log(error);

json = { assets: [{ size: 0 }] };
}

const kB = ((json.assets?.at(0)?.size ?? 0) / 1000).toFixed(1);

return (
Expand Down
12 changes: 0 additions & 12 deletions apps/docs/src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,6 @@
}
}
}

/* --shiki-foreground: theme(colors.slate.100);
--shiki-background: theme(colors.slate.950);
--shiki-token-constant: theme(colors.slate.50);
--shiki-token-string: theme(colors.slate.300);
--shiki-token-comment: theme(colors.slate.500);
--shiki-token-keyword: theme(colors.slate.400);
--shiki-token-parameter: theme(colors.slate.300);
--shiki-token-function: theme(colors.slate.200);
--shiki-token-string-expression: theme(colors.slate.200);
--shiki-token-punctuation: theme(colors.slate.500);
--shiki-token-link: theme(colors.slate.300); */
}

a {
Expand Down
6 changes: 1 addition & 5 deletions apps/docs/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"extends": "@robino/tsconfig/tsconfig.json",
"extends": "@robino/tsconfig/bundler.json",
"compilerOptions": {
"moduleResolution": "Bundler",
"module": "Preserve",
"noEmit": true,

"jsx": "react-jsx",
"jsxImportSource": "hono/jsx",

Expand Down
2 changes: 1 addition & 1 deletion apps/tester/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
"domco": "*",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"svelte": "4.2.18"
"svelte": "4.2.19"
}
}
6 changes: 1 addition & 5 deletions apps/tester/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"extends": "@robino/tsconfig/tsconfig.json",
"extends": "@robino/tsconfig/bundler.json",
"compilerOptions": {
"moduleResolution": "Bundler",
"module": "Preserve",
"noEmit": true,

"jsx": "react-jsx",

"paths": {
Expand Down
Loading

0 comments on commit 41af98a

Please sign in to comment.