@universal-ember/docs-support 0.6.0 → 0.6.1

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/package.json +1 -1
  2. package/tailwind.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@universal-ember/docs-support",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "The default blueprint for Embroider v2 addons.",
5
5
  "keywords": [
6
6
  "ember-addon"
package/tailwind.mjs CHANGED
@@ -16,8 +16,8 @@ const require = createRequire(import.meta.url);
16
16
  * Thanks, past self
17
17
  * https://github.com/CrowdStrike/ember-oss-docs/blob/main/ember-oss-docs/tailwind.cjs
18
18
  */
19
- const files = "**/*.{js,ts,hbs,gjs,gts,html}";
20
- const sourceEntries = "{app,src}";
19
+ const files = "**/*.{js,ts,hbs,gjs,gts,html,md}";
20
+ const sourceEntries = "{app,src,public}";
21
21
 
22
22
  export async function config(root, { packages } = {}) {
23
23
  const appManifestPath = await packageUp(root);