[READ-ONLY] Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
6

Configure Feed

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

Import package version directly

Grace Kind (Jun 6, 2026, 12:38 AM -0500) 61154447 d1580049

+2 -3
+2 -3
src/src.11tydata.js
··· 1 1 import { execSync } from "child_process"; 2 2 import { OAUTH_SCOPES } from "./oauthScopes.js"; 3 + import pkg from "../package.json" with { type: "json" }; 3 4 4 5 export default { 5 6 // Output the page as a HTML file 6 7 permalink: (data) => (data.page.fileSlug || "index") + ".html", 7 - version: execSync("node -p -e \"require('./package.json').version\"") 8 - .toString() 9 - .trim(), 8 + version: pkg.version, 10 9 gitCommit: () => execSync("git rev-parse --short=8 HEAD").toString().trim(), 11 10 hostName: process.env.HOST_NAME ?? "dev.impro.social", 12 11 environment: process.env.ENVIRONMENT ?? "development",