A React component library for rendering common AT Protocol records for applications such as Bluesky and Leaflet.

version bump, remove source maps

+4 -5
+2 -3
package.json
··· 1 1 { 2 2 "name": "atproto-ui", 3 - "version": "0.6.0", 3 + "version": "0.6.0-1", 4 4 "type": "module", 5 5 "description": "React components and hooks for rendering AT Protocol records.", 6 6 "main": "./lib-dist/index.js", ··· 18 18 "README.md" 19 19 ], 20 20 "sideEffects": [ 21 - "./lib-dist/styles.css", 22 - "./lib-dist/index.js" 21 + "./lib-dist/styles.css" 23 22 ], 24 23 "scripts": { 25 24 "dev": "vite",
+2 -2
vite.config.ts
··· 35 35 rollupOptions: { 36 36 input: resolve(__dirname, 'index.html') 37 37 }, 38 - sourcemap: true 38 + sourcemap: false 39 39 } : { 40 40 // Library build configuration 41 41 lib: { ··· 71 71 } 72 72 } 73 73 }, 74 - sourcemap: true, 74 + sourcemap: false, 75 75 minify: false 76 76 } 77 77 });