mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
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"
11 lines
350 B
JavaScript
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';
|
|
};
|