vintasend 0.9.1 → 0.10.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 (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -605,6 +605,7 @@ VintaSend has many backend, adapter, and template renderer implementations. If y
605
605
 
606
606
  ##### Template Renderers
607
607
  * **[vintasend-pug](https://github.com/vintasoftware/vintasend-pug/)**: Renders emails using Pug.
608
+ * **[vintasend-react-email](https://github.com/vintasoftware/vintasend-react-email/)**: Renders emails using React Email, including uncompiled TS/TSX template support.
608
609
 
609
610
  ##### Loggers
610
611
  * **[vintasend-winston](https://github.com/vintasoftware/vintasend-winston/)**: Uses Winston to allow `NotificationService` to create log entries.
@@ -642,6 +643,11 @@ This project uses a two-step automated release process:
642
643
  2. **Update CHANGELOG.md**: Edit manually
643
644
  3. **Publish**: `npm run release:publish`
644
645
 
646
+ Optional publish skips:
647
+ - `npm run release:publish -- --skip=vintasend-medplum,vintasend-ts-twilio`
648
+ - `npm run release:publish -- --skip-root`
649
+ - `npm run release:publish -- --skip=root,vintasend-medplum`
650
+
645
651
  For detailed instructions, see:
646
652
  - [Release Guide](RELEASE_GUIDE.md) - Complete walkthrough with examples
647
653
  - [Quick Reference](RELEASE_QUICK_REF.md) - Command cheatsheet
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vintasend",
3
- "version": "0.9.1",
3
+ "version": "0.10.0",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist"
@@ -16,6 +16,7 @@
16
16
  "test": "vitest run",
17
17
  "test:watch": "vitest",
18
18
  "test:coverage": "vitest run --coverage",
19
+ "implementation:generate": "node scripts/generate-implementation.js",
19
20
  "test:implementations:local": "node scripts/test-implementations-local.js",
20
21
  "release:bump": "node scripts/release-bump.js",
21
22
  "release:bump:patch": "node scripts/release-bump.js --bump=patch",