a textual notation to locate fields within atproto records (draft spec) microcosm.tngl.io/RecordPath/
9
fork

Configure Feed

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

build playground as static

phil b84c07c4 488901ed

+18 -4
+14 -2
playground/package-lock.json
··· 14 14 "@eslint/compat": "^2.0.4", 15 15 "@eslint/js": "^10.0.1", 16 16 "@sveltejs/adapter-auto": "^7.0.1", 17 + "@sveltejs/adapter-static": "^3.0.10", 17 18 "@sveltejs/kit": "^2.57.0", 18 19 "@sveltejs/vite-plugin-svelte": "^7.0.0", 19 20 "@tailwindcss/vite": "^4.2.2", ··· 39 40 }, 40 41 "../ref-impl-js": { 41 42 "name": "recordpath", 42 - "version": "0.0.1", 43 + "version": "0.0.2", 43 44 "license": "MIT OR Apache-2.0", 44 45 "devDependencies": { 45 - "typescript": "^5.0.0" 46 + "typescript": "^5.0.0", 47 + "vitest": "^3.0.0" 46 48 } 47 49 }, 48 50 "node_modules/@blazediff/core": { ··· 658 660 "version": "7.0.1", 659 661 "resolved": "https://registry.npmjs.org/@sveltejs/adapter-auto/-/adapter-auto-7.0.1.tgz", 660 662 "integrity": "sha512-dvuPm1E7M9NI/+canIQ6KKQDU2AkEefEZ2Dp7cY6uKoPq9Z/PhOXABe526UdW2mN986gjVkuSLkOYIBnS/M2LQ==", 663 + "dev": true, 664 + "license": "MIT", 665 + "peerDependencies": { 666 + "@sveltejs/kit": "^2.0.0" 667 + } 668 + }, 669 + "node_modules/@sveltejs/adapter-static": { 670 + "version": "3.0.10", 671 + "resolved": "https://registry.npmjs.org/@sveltejs/adapter-static/-/adapter-static-3.0.10.tgz", 672 + "integrity": "sha512-7D9lYFWJmB7zxZyTE/qxjksvMqzMuYrrsyh1f4AlZqeZeACPRySjbC3aFiY55wb1tWUaKOQG9PVbm74JcN2Iew==", 661 673 "dev": true, 662 674 "license": "MIT", 663 675 "peerDependencies": {
+1
playground/package.json
··· 22 22 "@eslint/compat": "^2.0.4", 23 23 "@eslint/js": "^10.0.1", 24 24 "@sveltejs/adapter-auto": "^7.0.1", 25 + "@sveltejs/adapter-static": "^3.0.10", 25 26 "@sveltejs/kit": "^2.57.0", 26 27 "@sveltejs/vite-plugin-svelte": "^7.0.0", 27 28 "@tailwindcss/vite": "^4.2.2",
+1
playground/src/routes/+layout.ts
··· 1 + export const prerender = true;
+2 -2
playground/svelte.config.js
··· 1 - import adapter from '@sveltejs/adapter-auto'; 1 + import adapter from '@sveltejs/adapter-static'; 2 2 3 3 /** @type {import('@sveltejs/kit').Config} */ 4 4 const config = { ··· 10 10 // adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list. 11 11 // If your environment is not supported, or you settled on a specific environment, switch out the adapter. 12 12 // See https://svelte.dev/docs/kit/adapters for more information about adapters. 13 - adapter: adapter() 13 + adapter: adapter({ pages: 'dist', assets: 'dist' }) 14 14 } 15 15 }; 16 16