@shipstatic/ship 0.5.0 → 0.5.2

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/README.md CHANGED
@@ -29,7 +29,7 @@ ship deployments remove <id>
29
29
 
30
30
  # Domains
31
31
  ship domains list
32
- ship domains set staging <deployment-id> # Point domain to deployment
32
+ ship domains set staging <deployment-id> # Link domain to deployment
33
33
  ship domains set staging --label production # Update domain labels
34
34
  ship domains get staging
35
35
  ship domains verify www.example.com
@@ -148,10 +148,10 @@ ship.ping() // Check API connectivity
148
148
  ### domains.set() Behavior
149
149
 
150
150
  ```typescript
151
- // Point domain to deployment
151
+ // Link domain to deployment
152
152
  ship.domains.set('staging', { deployment: 'abc123' });
153
153
 
154
- // Point domain to deployment with labels
154
+ // Link domain to deployment with labels
155
155
  ship.domains.set('staging', { deployment: 'abc123', labels: ['prod'] });
156
156
 
157
157
  // Update labels only (domain must exist)