@api-now/cli 1.0.4 → 1.2.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.
package/README.md CHANGED
@@ -127,7 +127,17 @@ apinow catalog list --scope <all|public|organization|private> [--key <domain_key
127
127
  ## Development
128
128
 
129
129
  ### Local Setup & Building
130
- 1. Clone the repository and install dependencies:
130
+
131
+ > [!NOTE]
132
+ > This project depends on private workspace packages (such as `@api-now/core`) during development and local testing. Before running `npm install`, ensure you have configured a local `.npmrc` file at the root of the workspace with access to the private registry.
133
+ >
134
+ > Example `.npmrc`:
135
+ > ```ini
136
+ > @api-now:registry=https://registry.npmjs.org/
137
+ > //registry.npmjs.org/:_authToken=YOUR_NPM_TOKEN
138
+ > ```
139
+
140
+ 1. Clone the repository, set up your `.npmrc`, and install dependencies:
131
141
  ```bash
132
142
  npm install
133
143
  ```