@jant/core 0.2.5 → 0.2.6
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-DmKw6ndf.js +155 -0
- package/dist/jant/assets/index-1wipnXVC.js +212 -0
- package/dist/jant/assets/index-DhnBrk-n.js +295 -0
- package/dist/jant/assets/node-sqlite-dialect-BzlVRd6O.js +155 -0
- package/dist/jant/assets/worker-entry-CAzIsRGm.js +66701 -0
- package/dist/jant/index.js +2 -0
- package/dist/jant/wrangler.json +1 -0
- package/package.json +1 -1
- package/src/preset.css +10 -2
- package/src/style.css +15 -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
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Jant Core Preset
|
|
3
3
|
*
|
|
4
|
-
* Includes basecoat UI and
|
|
5
|
-
*
|
|
4
|
+
* Includes basecoat UI, component styles, and source scanning for @jant/core components.
|
|
5
|
+
* This file should be imported in user's style.css after tailwindcss.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
+
/* BaseCoat UI framework */
|
|
8
9
|
@import "basecoat-css";
|
|
10
|
+
|
|
11
|
+
/* Jant component styles */
|
|
9
12
|
@import "./styles/components.css";
|
|
10
13
|
|
|
14
|
+
/* Scan @jant/core source files for Tailwind classes */
|
|
15
|
+
/* These paths are relative to this CSS file's location */
|
|
16
|
+
@source "./theme/**/*.{ts,tsx}";
|
|
17
|
+
@source "./routes/**/*.{ts,tsx}";
|
|
18
|
+
|
|
11
19
|
@theme {
|
|
12
20
|
--radius-default: 0.5rem;
|
|
13
21
|
}
|
package/src/style.css
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
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 */
|
|
9
|
+
@import "tailwindcss";
|
|
10
|
+
|
|
11
|
+
/* Jant Core preset (basecoat, component styles, theme, source scanning) */
|
|
12
|
+
@import "./preset.css";
|
|
13
|
+
|
|
14
|
+
/* Scan local project files */
|
|
15
|
+
@source "./**/*.{ts,tsx}";
|