@jant/core 0.2.5 → 0.2.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ export { P as POST_TYPES, V as VISIBILITY_LEVELS, e as createApp, w as default, m as markdown, f as sqid, t as time, u as url } from './assets/worker-entry-DWNZHBc4.js';
2
+ import 'node:events';
@@ -0,0 +1 @@
1
+ {"configPath":"/Users/green/project/jant/packages/core/wrangler.toml","userConfigPath":"/Users/green/project/jant/packages/core/wrangler.toml","topLevelName":"jant","definedEnvironments":[],"legacy_env":true,"compatibility_date":"2026-01-20","compatibility_flags":["nodejs_compat"],"jsx_factory":"React.createElement","jsx_fragment":"React.Fragment","rules":[{"type":"ESModule","globs":["**/*.js","**/*.mjs"]}],"name":"jant","main":"index.js","triggers":{},"assets":{"directory":"../client"},"vars":{"SITE_URL":"https://local.jant.me"},"durable_objects":{"bindings":[]},"workflows":[],"migrations":[],"kv_namespaces":[],"cloudchamber":{},"send_email":[],"queues":{"producers":[],"consumers":[]},"r2_buckets":[{"binding":"R2","bucket_name":"jant-media"}],"d1_databases":[{"binding":"DB","database_name":"jant-db","database_id":"local","migrations_dir":"src/db/migrations"}],"vectorize":[],"hyperdrive":[],"services":[],"analytics_engine_datasets":[],"dispatch_namespaces":[],"mtls_certificates":[],"pipelines":[],"secrets_store_secrets":[],"unsafe_hello_world":[],"worker_loaders":[],"ratelimits":[],"vpc_services":[],"logfwdr":{"bindings":[]},"python_modules":{"exclude":["**/*.pyc"]},"dev":{"ip":"localhost","port":9019,"local_protocol":"http","upstream_protocol":"http","enable_containers":true,"generate_types":false},"no_bundle":true}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jant/core",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
4
4
  "description": "A modern, open-source microblogging platform built on Cloudflare Workers",
5
5
  "type": "module",
6
6
  "bin": {
package/src/preset.css CHANGED
@@ -2,7 +2,7 @@
2
2
  * Jant Core Preset
3
3
  *
4
4
  * Includes basecoat UI and component styles.
5
- * Note: @source must be in user's style.css (doesn't work via @import)
5
+ * Source scanning is handled by tailwind.config.ts in user projects.
6
6
  */
7
7
 
8
8
  @import "basecoat-css";
package/src/style.css ADDED
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @jant/core Development Styles
3
+ *
4
+ * This file is used for developing/testing @jant/core directly.
5
+ * User projects should NOT use this file - use preset.css instead.
6
+ */
7
+
8
+ /* Tailwind CSS v4 + Jant Core preset */
9
+ @import "tailwindcss";
10
+ @import "./preset.css";
11
+
12
+ /* Load JS config for content scanning */
13
+ @config "../tailwind.config.ts";