Files
meteor/tools/tests/apps/packageless/packageless.js
David Glasser 2e5adc2659 fix autoupdate test
also fixes a bunch of other stuff like:

- parseStack markTop works again (so you get the right line numbers in
  self-test)

- you can (with appropriate env var) run apps with NO PACKAGES at
  all (even ctl)

- more consistently refer to METEOR-CORE@ releases as "Meteor 1.2.3"
2014-06-17 14:26:29 -07:00

11 lines
350 B
JavaScript

// This app functions with no packages loaded, so it's good for testing releases
// with no packages. All it does is print "RUNNING" and run forever.
main = function () {
// Tell the runner we're up.
console.log("LISTENING");
// Ensure Node doesn't kill us.
process.stdin.resume();
// Ensure boot.js doesn't kill us.
return 'DAEMON';
};