atmosphere explorer pds.ls
tool typescript atproto
425
fork

Configure Feed

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

prettier

Juliet f0d45997 440d035f

+10 -14
+1 -1
package.json
··· 17 17 "esbuild": "^0.28.0", 18 18 "prettier": "^3.8.3", 19 19 "prettier-plugin-organize-imports": "^4.3.0", 20 - "prettier-plugin-tailwindcss": "^0.7.4", 20 + "prettier-plugin-tailwindcss": "^0.8.0", 21 21 "tailwindcss": "^4.2.4", 22 22 "typescript": "^6.0.3", 23 23 "vite": "^8.0.10",
+5 -5
pnpm-lock.yaml
··· 127 127 specifier: ^4.3.0 128 128 version: 4.3.0(prettier@3.8.3)(typescript@6.0.3) 129 129 prettier-plugin-tailwindcss: 130 - specifier: ^0.7.4 131 - version: 0.7.4(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@6.0.3))(prettier@3.8.3) 130 + specifier: ^0.8.0 131 + version: 0.8.0(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@6.0.3))(prettier@3.8.3) 132 132 tailwindcss: 133 133 specifier: ^4.2.4 134 134 version: 4.2.4 ··· 1388 1388 vue-tsc: 1389 1389 optional: true 1390 1390 1391 - prettier-plugin-tailwindcss@0.7.4: 1392 - resolution: {integrity: sha512-UKii4RjY05SNt/WQi6/NcOn/LsT0/ILLXsxygjbRg5/YZelsSu5jTqorYHPDGq4nZy5q5hpCu+XdGZ1xaJEQgw==} 1391 + prettier-plugin-tailwindcss@0.8.0: 1392 + resolution: {integrity: sha512-V8ITGH87yuBDF6JpEZTOVlUz/saAwqb8f3HRgUj8Lh+tGCcrmorhsLpYqzygwFwK0PE2Ib6Mv3M7T/uE2tZV1g==} 1393 1393 engines: {node: '>=20.19'} 1394 1394 peerDependencies: 1395 1395 '@ianvs/prettier-plugin-sort-imports': '*' ··· 2776 2776 prettier: 3.8.3 2777 2777 typescript: 6.0.3 2778 2778 2779 - prettier-plugin-tailwindcss@0.7.4(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@6.0.3))(prettier@3.8.3): 2779 + prettier-plugin-tailwindcss@0.8.0(prettier-plugin-organize-imports@4.3.0(prettier@3.8.3)(typescript@6.0.3))(prettier@3.8.3): 2780 2780 dependencies: 2781 2781 prettier: 3.8.3 2782 2782 optionalDependencies:
+1 -1
scripts/build-worker.js
··· 1 1 import { build } from "esbuild"; 2 2 import { copyFileSync } from "fs"; 3 - import { resolve, dirname } from "path"; 3 + import { dirname, resolve } from "path"; 4 4 import { fileURLToPath } from "url"; 5 5 6 6 const __dirname = dirname(fileURLToPath(import.meta.url));
+1 -1
src/auth/state.ts
··· 1 - import { OAuthUserAgent } from "@atcute/oauth-browser-client"; 2 1 import { Did } from "@atcute/lexicons"; 2 + import { OAuthUserAgent } from "@atcute/oauth-browser-client"; 3 3 import { createSignal } from "solid-js"; 4 4 import { createStore } from "solid-js/store"; 5 5
+1 -3
src/components/lazy-tab.tsx
··· 3 3 export const LazyTab = (props: { children: JSX.Element }) => ( 4 4 <ErrorBoundary fallback={(err) => <div class="wrap-break-word">Error: {err.message}</div>}> 5 5 <Suspense 6 - fallback={ 7 - <div class="iconify lucide--loader-circle mt-2 animate-spin self-center text-xl" /> 8 - } 6 + fallback={<div class="iconify lucide--loader-circle mt-2 animate-spin self-center text-xl" />} 9 7 > 10 8 {props.children} 11 9 </Suspense>
+1 -3
src/components/permission-button.tsx
··· 37 37 </button> 38 38 ); 39 39 40 - return props.tooltip ? 41 - <Tooltip text={tooltip()!}>{button}</Tooltip> 42 - : button; 40 + return props.tooltip ? <Tooltip text={tooltip()!}>{button}</Tooltip> : button; 43 41 };