postinstall.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. const message = `
  2. 1111111111
  3. 1111111111111111
  4. 1111111111111111111111
  5. 11111111111111111111111111
  6. 111111111111111 11111111
  7. 1111111111111 111 111111
  8. 1111111111111 111111111 111111
  9. 111111111111 11111111111 111111
  10. 1111111111111 11111111111 111111
  11. 1111111111111 1111111111 111111
  12. 1111111111111111111111111 1111111
  13. 11111111 11111111
  14. 111111 111 1111111111111111111
  15. 11111 11111 111111111111111111
  16. 11111 1 11111111111111111
  17. 111111 111111111111111111
  18. 11111111111111111111111111
  19. 1111111111111111111111
  20. 111111111111111111
  21. 11111111111
  22. Thank you for using Parse Platform!
  23. https://parseplatform.org
  24. Please consider donating to help us maintain
  25. this package:
  26. 👉 https://opencollective.com/parse-server 👈
  27. `;
  28. function main() {
  29. process.stdout.write(message);
  30. process.exit(0);
  31. }
  32. module.exports = main;