a web component that shows the replies to a linked bsky post as comments.
0
fork

Configure Feed

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

move css to priv directory

rekkice 4a7eae1b 752a51fc

+5 -5
+1 -1
README.md
··· 50 50 import "bsky_comments_widget" 51 51 ``` 52 52 53 - ### from Gleam (`vite-gleam` needed, currently broken) 53 + ### from Gleam (`vite-gleam` needed) 54 54 55 55 ```sh 56 56 gleam add bsky_comments_widget@1
+1 -1
gleam.toml
··· 1 1 name = "bsky_comments_widget" 2 - version = "1.0.3" 2 + version = "1.0.4" 3 3 target = "javascript" 4 4 5 5 # Fill out these fields if you intend to generate HTML documentation or publish
+1 -1
package.json
··· 1 1 { 2 2 "name": "bsky_comments_widget", 3 - "version": "1.0.3", 3 + "version": "1.0.4", 4 4 "type": "module", 5 5 "main": "dist/bsky_comments_widget.umd.cjs", 6 6 "module": "dist/bsky_comments_widget.js",
src/bsky_comments_widget.css priv/bsky_comments_widget.css
+2 -2
src/bsky_comments_widget/ffi/styles.mjs
··· 1 - // hacky relative path, since the path is resolved from `build/`. could be improved? 2 - import widgetStyles from "../../../../../../src/bsky_comments_widget.css?inline" 1 + // hacky relative path, since the path is resolved from `build/` 2 + import widgetStyles from "../../priv/bsky_comments_widget.css?inline" 3 3 4 4 export function getCss() { 5 5 return widgetStyles