create-ortha-app 0.4.1 → 0.4.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ortha-app",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "description": "Create an Ortha CMS app: npx create-ortha-app my-cms",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/ortha-source/ortha-cms/tree/main/packages/create-ortha-app",
@@ -8,8 +8,15 @@
8
8
  /* Tailwind excludes `node_modules` from its automatic content detection, so
9
9
  without this line none of the classes inside the Ortha packages are seen and
10
10
  the whole admin renders unstyled. The published packages ship compiled JS
11
- with the class strings intact, which is what this scans. */
12
- @source "../../../node_modules/@orthacms/*/dist/**/*.js";
11
+ with the class strings intact, which is what this scans.
12
+
13
+ This MUST stay a bare directory path. A `@source` that contains a glob is
14
+ still filtered through the ignore rules — `node_modules` among them — so a
15
+ pattern reaching into each package's `dist` matches nothing, and the
16
+ stylesheet quietly comes out ~15 kB with no component utilities in it. Only
17
+ a literal directory is registered as an explicit content root that bypasses
18
+ those rules. */
19
+ @source "../../../node_modules/@orthacms";
13
20
 
14
21
  @custom-variant dark (&:where(.dark, .dark *));
15
22