GENERIC_HELP_SUFFIX.string.js 993 B

1234567891011121314151617181920
  1. /**
  2. * A generic help suffix for use in error messages.
  3. *
  4. * @type {String}
  5. */
  6. module.exports = ' [?] See https://sailsjs.com/support for help.';
  7. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  8. // FUTURE: Potentially build a more helpful docs/troubleshooting page on
  9. // sailsjs.com with links to machine-specific issues that could come up in
  10. // helpers, actions2, shell scripts, sails-stdlib, packs, and so forth.
  11. //
  12. // Note that originally, we hard-coded more links here, but it was just way too
  13. // verbose and made it hard to actually read the error in the first place:
  14. // • https://github.com/node-machine/machine/blob/3cbdf60f7754ef47688320d370ef543eb27e36f0/lib/Machine.build.js#L21-L24
  15. // • https://github.com/node-machine/machine/commit/634d77cb2474dedd708966709cf0eb225b22d080
  16. //
  17. // ^^ see those snapshots for reference if you're looking for links in the interim
  18. // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -