@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.
- package/dist/client/.vite/manifest.json +17 -0
- package/dist/client/assets/client-DKznU4dt.js +3434 -0
- package/dist/client/assets/style-D2PQnJEV.css +2 -0
- package/dist/jant/.dev.vars +1 -0
- package/dist/jant/.vite/manifest.json +58 -0
- package/dist/jant/assets/bun-sqlite-dialect-B0Ne_8k6.js +155 -0
- package/dist/jant/assets/index-Cg7EsRQZ.js +212 -0
- package/dist/jant/assets/index-RJeuizBo.js +295 -0
- package/dist/jant/assets/node-sqlite-dialect-bZ-6E1mH.js +155 -0
- package/dist/jant/assets/worker-entry-DWNZHBc4.js +66717 -0
- package/dist/jant/index.js +2 -0
- package/dist/jant/wrangler.json +1 -0
- package/package.json +1 -1
- package/src/preset.css +1 -1
- package/src/style.css +13 -0
|
@@ -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
package/src/preset.css
CHANGED
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";
|