cantip 0.1.1 → 0.1.2
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/app/styles/tailwind.css +10 -0
- package/package.json +2 -2
package/app/styles/tailwind.css
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
@import 'tailwindcss';
|
|
2
2
|
@import 'tw-animate-css';
|
|
3
3
|
|
|
4
|
+
/*
|
|
5
|
+
* Explicitly scan the engine's app/ for class names. Tailwind v4 auto-detects
|
|
6
|
+
* sources but IGNORES node_modules — and when cantip runs from a consumer
|
|
7
|
+
* project, all the engine components live under node_modules/cantip/app/. Without
|
|
8
|
+
* this, none of the chrome's utility classes (grid, spacing, cards…) get
|
|
9
|
+
* generated and the site renders unstyled. The path is relative to this file
|
|
10
|
+
* (app/styles/ → app/).
|
|
11
|
+
*/
|
|
12
|
+
@source "../";
|
|
13
|
+
|
|
4
14
|
/* Dark mode is class-based: <html class="dark"> toggled by the theme switch. */
|
|
5
15
|
@custom-variant dark (&:where(.dark, .dark *));
|
|
6
16
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cantip",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"description": "Config-driven Remix documentation site engine — ingest Obsidian/markdown vaults, build an SSR docs site. \"How (to)\" in Kyrgyz.",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"documentation",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"url": "https://github.com/Sedokina/cantip/issues"
|
|
26
26
|
},
|
|
27
27
|
"bin": {
|
|
28
|
-
"cantip": "
|
|
28
|
+
"cantip": "cli.js"
|
|
29
29
|
},
|
|
30
30
|
"exports": {
|
|
31
31
|
"./config": {
|