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