wilfredwake 1.0.0 → 1.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wilfredwake",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI Tool for Multi-Developer Development Environment Wake & Status Management",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -10,9 +10,11 @@
10
10
  env: dev
11
11
  version: "1.0"
12
12
 
13
- # SERVICES DEFINITION (DEV ONLY)
13
+ # SERVICES DEFINITION (DEV, STAGING, PROD)
14
+ # Uses YAML anchors to avoid duplication
14
15
  services:
15
16
  dev:
17
+ &dev_services
16
18
  # Core backend service
17
19
  backend:
18
20
  url: https://pension-backend-rs4h.onrender.com
@@ -47,3 +49,9 @@ services:
47
49
  health: /health
48
50
  dependsOn: []
49
51
  description: "Notification Producer Service"
52
+
53
+ # Staging environment (same services as dev)
54
+ staging: *dev_services
55
+
56
+ # Production environment (same services as dev)
57
+ prod: *dev_services