* tests: fix float problems and PAT problem * extend CONTRIBUTING.md * extend build documentation, add GH action, fix build on MacOS * fix build on Vercel * update .gitignore and CONTRIBUTING.md * feat: begin work on monorepo * chore(actions/basic-build): use pnpm * fix: vercel-deploy * docs: updates with new folders * chore: apply PR review comments --------- Co-authored-by: martin-mfg <2026226+martin-mfg@users.noreply.github.com>
16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
// @ts-check
|
|
|
|
const whitelist = process.env.WHITELIST
|
|
? process.env.WHITELIST.split(",")
|
|
: undefined;
|
|
|
|
const gistWhitelist = process.env.GIST_WHITELIST
|
|
? process.env.GIST_WHITELIST.split(",")
|
|
: undefined;
|
|
|
|
const excludeRepositories = process.env.EXCLUDE_REPO
|
|
? process.env.EXCLUDE_REPO.split(",")
|
|
: [];
|
|
|
|
export { whitelist, gistWhitelist, excludeRepositories };
|