Files
exploRUGComponent/docs-src/_data/api.11tydata.js
Justin Fagnani fc662728eb Add a static site generator
There is no build for the element or site utilities like PrismJS yet, so this site only works locally at the moment.
2019-12-20 13:56:55 -08:00

9 lines
178 B
JavaScript

const fs = require('fs');
module.exports = () => {
const customElements = JSON.parse(fs.readFileSync('custom-elements.json', 'utf-8'));
return {
customElements,
};
};