the-via / website

GNU General Public License v3.0
24 stars 22 forks source link

Where is the updated source code of the website? #56

Closed astrolemonade closed 1 year ago

astrolemonade commented 1 year ago

Hey! Where is the updated source code of the website? On the website:

image

In the repo: image

miccou commented 1 year ago

The list of supported keyboards is dynamically updating during the build.

If you look at package.json you'll see the build script calls node scripts/generate-dynamic-content.js which will fetch the supported keyboards from https://usevia.app/definitions/keyboard_names.json and product a new .mdx file.

If you run yarn start, then the content generation script will not be run. So if you're debugging or developing, you can run node scripts/generate-dynamic-content.js before yarn start to see up to date supported keyboards.

Hope this clears it up @astrolemonade.