Skip to content
Snippets Groups Projects
Forked from TransFem.org / Sharkey
12651 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
index.js 214 B
const fs = require('fs');

if (fs.existsSync('./built')) {
	require('./built').default();
} else {
	console.log('Built code is not found. Probably an error occurred during a build or you just forgot to build.');
}