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.
- package/.env.example +3 -0
- package/LICENSE +619 -0
- package/README.md +132 -0
- package/config.example.json +54 -0
- package/dist/bundle/run-and-notify.mjs +516 -0
- package/dist/bundle/run-and-notify.mjs.map +7 -0
- package/examples/apps/daily-digest-failure.mjs +17 -0
- package/examples/apps/daily-digest-html-success.mjs +14 -0
- package/examples/apps/daily-digest-success.mjs +16 -0
- package/examples/apps/full-html.mjs +14 -0
- package/examples/apps/full-markdown.mjs +19 -0
- package/examples/apps/full-raw.mjs +4 -0
- package/examples/apps/structured-jsonl-success.mjs +23 -0
- package/examples/config-html.json +8 -0
- package/examples/config-jsonl.json +8 -0
- package/examples/config-markdown.json +8 -0
- package/examples/config-raw.json +8 -0
- package/examples/daily-digest-html/config.json +46 -0
- package/examples/daily-digest-html/templates/error.email.html.hbs +9 -0
- package/examples/daily-digest-html/templates/error.slack.blocks.json.hbs +9 -0
- package/examples/daily-digest-html/templates/error.subject.hbs +1 -0
- package/examples/daily-digest-html/templates/error.text.hbs +7 -0
- package/examples/daily-digest-html/templates/success.email.html.hbs +1 -0
- package/examples/daily-digest-html/templates/success.slack.blocks.json.hbs +9 -0
- package/examples/daily-digest-html/templates/success.subject.hbs +1 -0
- package/examples/daily-digest-html/templates/success.text.hbs +1 -0
- package/examples/daily-digest-markdown/config.json +46 -0
- package/examples/daily-digest-markdown/templates/error.email.html.hbs +9 -0
- package/examples/daily-digest-markdown/templates/error.slack.blocks.json.hbs +16 -0
- package/examples/daily-digest-markdown/templates/error.subject.hbs +1 -0
- package/examples/daily-digest-markdown/templates/error.text.hbs +9 -0
- package/examples/daily-digest-markdown/templates/success.email.html.hbs +1 -0
- package/examples/daily-digest-markdown/templates/success.slack.blocks.json.hbs +9 -0
- package/examples/daily-digest-markdown/templates/success.subject.hbs +1 -0
- package/examples/daily-digest-markdown/templates/success.text.hbs +1 -0
- package/examples/full-html/config.json +46 -0
- package/examples/full-html/templates/email.html.hbs +22 -0
- package/examples/full-html/templates/slack.blocks.json.hbs +9 -0
- package/examples/full-html/templates/slack.text.hbs +1 -0
- package/examples/full-html/templates/subject.hbs +1 -0
- package/examples/full-html/templates/text.hbs +12 -0
- package/examples/full-markdown/config.json +46 -0
- package/examples/full-markdown/templates/email.html.hbs +1 -0
- package/examples/full-markdown/templates/slack.blocks.json.hbs +9 -0
- package/examples/full-markdown/templates/slack.text.hbs +1 -0
- package/examples/full-markdown/templates/subject.hbs +1 -0
- package/examples/full-markdown/templates/text.hbs +18 -0
- package/examples/full-raw/config.json +46 -0
- package/examples/full-raw/templates/email.html.hbs +22 -0
- package/examples/full-raw/templates/slack.blocks.json.hbs +16 -0
- package/examples/full-raw/templates/slack.text.hbs +1 -0
- package/examples/full-raw/templates/subject.hbs +1 -0
- package/examples/full-raw/templates/text.hbs +12 -0
- package/examples/minimal/config.json +20 -0
- package/examples/structured-jsonl-html/config.json +46 -0
- package/examples/structured-jsonl-html/templates/error.email.html.hbs +6 -0
- package/examples/structured-jsonl-html/templates/error.slack.blocks.json.hbs +9 -0
- package/examples/structured-jsonl-html/templates/error.subject.hbs +1 -0
- package/examples/structured-jsonl-html/templates/error.text.hbs +4 -0
- package/examples/structured-jsonl-html/templates/success.email.html.hbs +16 -0
- package/examples/structured-jsonl-html/templates/success.slack.blocks.json.hbs +9 -0
- package/examples/structured-jsonl-html/templates/success.subject.hbs +1 -0
- package/examples/structured-jsonl-html/templates/success.text.hbs +6 -0
- package/examples/structured-jsonl-markdown/config.json +46 -0
- package/examples/structured-jsonl-markdown/templates/error.email.html.hbs +9 -0
- package/examples/structured-jsonl-markdown/templates/error.slack.blocks.json.hbs +9 -0
- package/examples/structured-jsonl-markdown/templates/error.subject.hbs +1 -0
- package/examples/structured-jsonl-markdown/templates/error.text.hbs +9 -0
- package/examples/structured-jsonl-markdown/templates/success.email.html.hbs +1 -0
- package/examples/structured-jsonl-markdown/templates/success.slack.blocks.json.hbs +9 -0
- package/examples/structured-jsonl-markdown/templates/success.subject.hbs +1 -0
- package/examples/structured-jsonl-markdown/templates/success.text.hbs +19 -0
- package/package.json +79 -0
- 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.