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 7cf184a commit d5ea3d9Copy full SHA for d5ea3d9
cli.js
@@ -1137,7 +1137,7 @@ async function taskBuildWebsite() {
1137
<div role="main" id="main" class="container">
1138
${body}
1139
</div>
1140
-
+
1141
<footer role="contentinfo" class="container">
1142
<p>Open source on <a href="https://github.com/schemastore/schemastore/">GitHub</a></p>
1143
</footer>
@@ -1147,6 +1147,12 @@ async function taskBuildWebsite() {
1147
</html>
1148
`,
1149
)
1150
1151
+ await fs.mkdir('./website/api/json', { recursive: true })
1152
+ await fs.copyFile(
1153
+ './src/api/json/catalog.json',
1154
+ './website/api/json/catalog.json',
1155
+ )
1156
}
1157
1158
async function assertFileSystemIsValid() {
0 commit comments