Skip to content

Instantly share code, notes, and snippets.

@emgee3
Created November 6, 2013 07:03
Show Gist options
  • Save emgee3/7332090 to your computer and use it in GitHub Desktop.
Save emgee3/7332090 to your computer and use it in GitHub Desktop.
meteor self-destruct code for devel only packages
Meteor.startup(function () {
if (__meteor_runtime_config__) {
if (__meteor_runtime_config__.ROOT_URL.indexOf('localhost') !== -1)
return;
}
console.log("FATAL ERROR --- ");
process.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment