solid-app-set
Version:
Solid-compatible App set
13 lines (8 loc) • 378 B
Plain Text
# Wrap TTL files into JS files for bundling with library
,all : individualForm.js vcard.js
individualForm.js : individualForm.ttl
(echo 'module.exports = `' ; cat individualForm.ttl; echo '`') > individualForm.js
vcard.ttl:
curl http://www.w3.org/2006/vcard/ns > vcard.ttl
vcard.js : vcard.ttl
(echo 'module.exports = `' ; cat vcard.ttl; echo '`') > vcard.js