@vgabriel45/demo-sdk 1.4.0 → 2.0.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
@@ -63,3 +63,8 @@ export function formatSlug(text = "") {
63
63
  .replace(/[^a-z0-9]+/g, "-")
64
64
  .replace(/^-+|-+$/g, "");
65
65
  }
66
+
67
+ /** Return a stable marker used for release-flow demos. */
68
+ export function getDemoSdkMarker() {
69
+ return "demo-sdk-change";
70
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vgabriel45/demo-sdk",
3
- "version": "1.4.0",
3
+ "version": "2.0.0",
4
4
  "private": false,
5
5
  "description": "Minimal publishable package for release pipeline sandbox testing",
6
6
  "main": "index.js",