run-and-notify 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (74) hide show
  1. package/.env.example +3 -0
  2. package/LICENSE +619 -0
  3. package/README.md +132 -0
  4. package/config.example.json +54 -0
  5. package/dist/bundle/run-and-notify.mjs +516 -0
  6. package/dist/bundle/run-and-notify.mjs.map +7 -0
  7. package/examples/apps/daily-digest-failure.mjs +17 -0
  8. package/examples/apps/daily-digest-html-success.mjs +14 -0
  9. package/examples/apps/daily-digest-success.mjs +16 -0
  10. package/examples/apps/full-html.mjs +14 -0
  11. package/examples/apps/full-markdown.mjs +19 -0
  12. package/examples/apps/full-raw.mjs +4 -0
  13. package/examples/apps/structured-jsonl-success.mjs +23 -0
  14. package/examples/config-html.json +8 -0
  15. package/examples/config-jsonl.json +8 -0
  16. package/examples/config-markdown.json +8 -0
  17. package/examples/config-raw.json +8 -0
  18. package/examples/daily-digest-html/config.json +46 -0
  19. package/examples/daily-digest-html/templates/error.email.html.hbs +9 -0
  20. package/examples/daily-digest-html/templates/error.slack.blocks.json.hbs +9 -0
  21. package/examples/daily-digest-html/templates/error.subject.hbs +1 -0
  22. package/examples/daily-digest-html/templates/error.text.hbs +7 -0
  23. package/examples/daily-digest-html/templates/success.email.html.hbs +1 -0
  24. package/examples/daily-digest-html/templates/success.slack.blocks.json.hbs +9 -0
  25. package/examples/daily-digest-html/templates/success.subject.hbs +1 -0
  26. package/examples/daily-digest-html/templates/success.text.hbs +1 -0
  27. package/examples/daily-digest-markdown/config.json +46 -0
  28. package/examples/daily-digest-markdown/templates/error.email.html.hbs +9 -0
  29. package/examples/daily-digest-markdown/templates/error.slack.blocks.json.hbs +16 -0
  30. package/examples/daily-digest-markdown/templates/error.subject.hbs +1 -0
  31. package/examples/daily-digest-markdown/templates/error.text.hbs +9 -0
  32. package/examples/daily-digest-markdown/templates/success.email.html.hbs +1 -0
  33. package/examples/daily-digest-markdown/templates/success.slack.blocks.json.hbs +9 -0
  34. package/examples/daily-digest-markdown/templates/success.subject.hbs +1 -0
  35. package/examples/daily-digest-markdown/templates/success.text.hbs +1 -0
  36. package/examples/full-html/config.json +46 -0
  37. package/examples/full-html/templates/email.html.hbs +22 -0
  38. package/examples/full-html/templates/slack.blocks.json.hbs +9 -0
  39. package/examples/full-html/templates/slack.text.hbs +1 -0
  40. package/examples/full-html/templates/subject.hbs +1 -0
  41. package/examples/full-html/templates/text.hbs +12 -0
  42. package/examples/full-markdown/config.json +46 -0
  43. package/examples/full-markdown/templates/email.html.hbs +1 -0
  44. package/examples/full-markdown/templates/slack.blocks.json.hbs +9 -0
  45. package/examples/full-markdown/templates/slack.text.hbs +1 -0
  46. package/examples/full-markdown/templates/subject.hbs +1 -0
  47. package/examples/full-markdown/templates/text.hbs +18 -0
  48. package/examples/full-raw/config.json +46 -0
  49. package/examples/full-raw/templates/email.html.hbs +22 -0
  50. package/examples/full-raw/templates/slack.blocks.json.hbs +16 -0
  51. package/examples/full-raw/templates/slack.text.hbs +1 -0
  52. package/examples/full-raw/templates/subject.hbs +1 -0
  53. package/examples/full-raw/templates/text.hbs +12 -0
  54. package/examples/minimal/config.json +20 -0
  55. package/examples/structured-jsonl-html/config.json +46 -0
  56. package/examples/structured-jsonl-html/templates/error.email.html.hbs +6 -0
  57. package/examples/structured-jsonl-html/templates/error.slack.blocks.json.hbs +9 -0
  58. package/examples/structured-jsonl-html/templates/error.subject.hbs +1 -0
  59. package/examples/structured-jsonl-html/templates/error.text.hbs +4 -0
  60. package/examples/structured-jsonl-html/templates/success.email.html.hbs +16 -0
  61. package/examples/structured-jsonl-html/templates/success.slack.blocks.json.hbs +9 -0
  62. package/examples/structured-jsonl-html/templates/success.subject.hbs +1 -0
  63. package/examples/structured-jsonl-html/templates/success.text.hbs +6 -0
  64. package/examples/structured-jsonl-markdown/config.json +46 -0
  65. package/examples/structured-jsonl-markdown/templates/error.email.html.hbs +9 -0
  66. package/examples/structured-jsonl-markdown/templates/error.slack.blocks.json.hbs +9 -0
  67. package/examples/structured-jsonl-markdown/templates/error.subject.hbs +1 -0
  68. package/examples/structured-jsonl-markdown/templates/error.text.hbs +9 -0
  69. package/examples/structured-jsonl-markdown/templates/success.email.html.hbs +1 -0
  70. package/examples/structured-jsonl-markdown/templates/success.slack.blocks.json.hbs +9 -0
  71. package/examples/structured-jsonl-markdown/templates/success.subject.hbs +1 -0
  72. package/examples/structured-jsonl-markdown/templates/success.text.hbs +19 -0
  73. package/package.json +79 -0
  74. package/schemas/config.schema.json +259 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.