@vgabriel45/demo-sdk 1.0.0 → 1.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 (2) hide show
  1. package/index.js +5 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -14,3 +14,8 @@ export function farewell(name = "world") {
14
14
  export function celebrate(event = "release") {
15
15
  return `🎉 ${event} shipped!`;
16
16
  }
17
+
18
+ /** Greet with a leading emoji (defaults to wave). */
19
+ export function greetEmoji(name = "world", emoji = "👋", options = {}) {
20
+ return `${emoji} ${greet(name, options)}`;
21
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgabriel45/demo-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "private": false,
5
5
  "description": "Minimal publishable package for release pipeline sandbox testing",
6
6
  "main": "index.js",