Skip to content

Commit

Permalink
Merge branch 'master' into geolocation
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev authored Aug 1, 2024
2 parents 76386a6 + 16fc974 commit 409488f
Show file tree
Hide file tree
Showing 6 changed files with 53 additions and 863 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/website.yml

This file was deleted.

3 changes: 2 additions & 1 deletion apps/website/docs/contracts/sizes.data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ export default {

async function definePackageSize(packageName, moduleName) {
const response = await fetch(
`https://esm.run/${packageName}@latest/${moduleName}`
`https://esm.run/${packageName}@latest/${moduleName}`,
{ method: 'HEAD' }
);

const encodedSize = Number(response.headers.get('content-length') ?? 0);
Expand Down
1 change: 0 additions & 1 deletion apps/website/docs/statements/ecosystem.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script setup>
import { ecosystem } from '../ecosystem.ts'
console.log(ecosystem)
</script>

# Ecosystem
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm run -r build",
"format:check": "pnpm prettier {packages,apps}/**/*.{ts,tsx,md,vue} --check --no-error-on-unmatched-pattern",
"format:apply": "pnpm prettier {packages,apps}/**/*.{ts,tsx,md,vue} --write --no-error-on-unmatched-pattern"
},
Expand Down Expand Up @@ -35,13 +36,13 @@
"size-limit": "^7.0.8",
"superstruct": "^2.0.2",
"typescript": "5.1.6",
"vite": "4.4.9",
"vite": "5",
"vite-plugin-dts": "^3.8.3",
"vite-tsconfig-paths": "4.2.1",
"vitepress": "1.3.1",
"vitepress-plugin-rss": "^0.2.8",
"vitepress-plugin-rss": "^0.2.9",
"vitest": "~1.5.0",
"vue": "3.4.27",
"vue": "3.4.35",
"vue-chartjs": "^5.3.1"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"size-limit": [
{
"path": "./dist/contracts.js",
"limit": "829 B"
"limit": "831 B"
}
]
}
Loading

0 comments on commit 409488f

Please sign in to comment.