@kuckit/docs-module 3.0.4 → 3.0.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.
Files changed (2) hide show
  1. package/dist/styles.css +13 -0
  2. package/package.json +7 -7
@@ -0,0 +1,13 @@
1
+ /**
2
+ * @kuckit/docs-module styles
3
+ *
4
+ * Import this in your app's CSS:
5
+ * @import "@kuckit/docs-module/styles.css";
6
+ *
7
+ * NOTE: @plugin is removed - the consuming app should add @plugin globally.
8
+ * @source scans compiled JS files since TSX doesn't exist after publishing.
9
+ */
10
+ @plugin "@tailwindcss/typography";
11
+
12
+ /* Scan compiled module components for Tailwind classes */
13
+ @source "./**/*.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuckit/docs-module",
3
- "version": "3.0.4",
3
+ "version": "3.0.6",
4
4
  "description": "Documentation module for Kuckit using Fumadocs",
5
5
  "type": "module",
6
6
  "main": "dist/server/module.js",
@@ -44,24 +44,24 @@
44
44
  "devDependencies": {
45
45
  "@tailwindcss/typography": "^0.5"
46
46
  },
47
- "postInstallMessage": "📚 Docs module setup complete!\n\n ✅ Created content/docs/ directory with starter page\n ✅ Installed @tailwindcss/typography in apps/web\n\n ⚠️ Add the following to your CSS file (e.g., apps/web/src/index.css):\n\n @import \"@kuckit/docs-module/styles.css\";\n @plugin \"@tailwindcss/typography\";\n\n See SETUP.md for full configuration: https://github.com/draphonix/kuckit"
47
+ "postInstallMessage": "📚 Docs module setup complete!\n\n ✅ Created content/docs/ directory with starter page\n ✅ Installed @tailwindcss/typography in apps/web\n Added CSS import to kuckit-modules.css\n\n See SETUP.md for full configuration: https://github.com/draphonix/kuckit"
48
48
  }
49
49
  },
50
50
  "scripts": {
51
- "build": "tsdown",
51
+ "build": "tsdown && cp src/styles.css dist/styles.css",
52
52
  "prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
53
53
  },
54
54
  "peerDependencies": {
55
- "@kuckit/sdk": "^3.0.4",
56
- "@kuckit/sdk-react": "^3.0.4",
55
+ "@kuckit/sdk": "^3.0.6",
56
+ "@kuckit/sdk-react": "^3.0.6",
57
57
  "@tailwindcss/typography": "^0.5",
58
58
  "@tanstack/react-router": "^1",
59
59
  "react": "^18 || ^19",
60
60
  "typescript": "^5"
61
61
  },
62
62
  "dependencies": {
63
- "@kuckit/api": "^3.0.4",
64
- "@kuckit/domain": "^3.0.4",
63
+ "@kuckit/api": "^3.0.6",
64
+ "@kuckit/domain": "^3.0.6",
65
65
  "@fumadocs/mdx-remote": "^1.3.0",
66
66
  "gray-matter": "^4.0.3",
67
67
  "lucide-react": "^0.379.0",