@robotical/martyblocks
Version:
MartyBlocks based on Scratch for Marty the Robot by Robotical
17 lines (15 loc) • 384 B
JavaScript
// https://developers.cloudflare.com/pages/platform/build-configuration#environment-variables
module.exports = {
detect({env}) {
return env.CF_PAGES === '1';
},
configuration({env}) {
return {
name: 'Cloudflare Pages',
service: 'cloudflarePages',
commit: env.CF_PAGES_COMMIT_SHA,
branch: env.CF_PAGES_BRANCH,
root: env.PWD,
};
},
};