@levino/shipyard-docs 0.6.3 → 0.6.4-rc-20260121143513

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/index.css +20 -0
  2. package/package.json +10 -4
package/index.css ADDED
@@ -0,0 +1,20 @@
1
+ /* biome-ignore-all lint/suspicious/noUnknownAtRules: Tailwind CSS directives */
2
+
3
+ /*
4
+ * shipyard-docs CSS entry point for Tailwind CSS 4
5
+ *
6
+ * This file provides the @source directives so Tailwind can scan
7
+ * shipyard-docs components for CSS class usage.
8
+ *
9
+ * Usage in your app's CSS:
10
+ *
11
+ * @import "tailwindcss";
12
+ * @import "@levino/shipyard-base";
13
+ * @import "@levino/shipyard-docs";
14
+ * @plugin "daisyui";
15
+ * @plugin "@tailwindcss/typography";
16
+ */
17
+
18
+ /* Tell Tailwind to scan this package for class usage */
19
+ @source "./src";
20
+ @source "./astro";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@levino/shipyard-docs",
3
- "version": "0.6.3",
3
+ "version": "0.6.4-rc-20260121143513",
4
4
  "description": "Documentation plugin for shipyard with automatic sidebar, pagination, and git metadata",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -27,7 +27,7 @@
27
27
  "effect": "^3.12.5",
28
28
  "ramda": "^0.31",
29
29
  "unist-util-visit": "^5.0.0",
30
- "@levino/shipyard-base": "^0.6.3"
30
+ "@levino/shipyard-base": "0.7.0-rc-20260121143513"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@tailwindcss/typography": "^0.5.16",
@@ -40,14 +40,20 @@
40
40
  "type": "git",
41
41
  "url": "https://github.com/levino/shipyard"
42
42
  },
43
+ "style": "./index.css",
43
44
  "exports": {
44
- ".": "./src/index.ts",
45
+ ".": {
46
+ "style": "./index.css",
47
+ "default": "./src/index.ts"
48
+ },
49
+ "./index.css": "./index.css",
45
50
  "./layout": "./astro/Layout.astro",
46
51
  "./astro": "./astro/index.ts",
47
52
  "./astro/*": "./astro/*"
48
53
  },
49
54
  "files": [
50
55
  "astro",
51
- "src"
56
+ "src",
57
+ "index.css"
52
58
  ]
53
59
  }