We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b6297f commit 6991c7aCopy full SHA for 6991c7a
scripts/cem-to-md.js
@@ -10,12 +10,18 @@ const markdown = customElementsManifestToMarkdown(manifest);
10
11
const theme = packageDir.split('/').at(-1);
12
const name = theme.at(0).toUpperCase() + theme.substring(1);
13
+const edition = theme === 'form' ? 'Barebone' : name;
14
15
fs.writeFileSync(
16
`${packageDir}/README.md`,
- `# JSON Schema Form Element — ***${name}*** edition
17
+ `# JSON Schema Form Element — ***${edition}*** edition
18
-See the [documentation](../../README.md).
19
+\`\`\`sh
20
+npm install @jsfe/${theme}
21
+\`\`\`
22
+
23
+Consult the [documentation](../../README.md).
24
+Open the [playground](https://jsfe.js.org).
25
26
---
27
0 commit comments