npm-check-updates 18.3.0 → 18.3.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/README.md +2 -2
- package/build/index.d.ts +2 -2
- package/build/index.js +116 -116
- package/build/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -375,11 +375,11 @@ Options that take no arguments can be negated by prefixing them with `--no-`, e.
|
|
|
375
375
|
</tr>
|
|
376
376
|
<tr>
|
|
377
377
|
<td>-w, --workspace <s></td>
|
|
378
|
-
<td>Run on one or more specified workspaces. Add <code>--root</code> to
|
|
378
|
+
<td>Run on one or more specified workspaces. Add <code>--no-root</code> to exclude the root project. (default: [])</td>
|
|
379
379
|
</tr>
|
|
380
380
|
<tr>
|
|
381
381
|
<td>-ws, --workspaces</td>
|
|
382
|
-
<td>Run on all workspaces. Add <code>--root</code> to
|
|
382
|
+
<td>Run on all workspaces. Add <code>--no-root</code> to exclude the root project.</td>
|
|
383
383
|
</tr>
|
|
384
384
|
</table>
|
|
385
385
|
|
package/build/index.d.ts
CHANGED
|
@@ -208,9 +208,9 @@ export declare interface RunOptions {
|
|
|
208
208
|
upgrade?: boolean;
|
|
209
209
|
/** Log additional information for debugging. Alias for `--loglevel` verbose. */
|
|
210
210
|
verbose?: boolean;
|
|
211
|
-
/** Run on one or more specified workspaces. Add `--root` to
|
|
211
|
+
/** Run on one or more specified workspaces. Add `--no-root` to exclude the root project. */
|
|
212
212
|
workspace?: readonly string[];
|
|
213
|
-
/** Run on all workspaces. Add `--root` to
|
|
213
|
+
/** Run on all workspaces. Add `--no-root` to exclude the root project. */
|
|
214
214
|
workspaces?: boolean;
|
|
215
215
|
}
|
|
216
216
|
|