You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| `token` | string | yes | | The NPM auth token to use for publishing |
69
-
| `registry` | string | no | https://registry.npmjs.org/ | The NPM registry URL to use |
70
-
| `package` | string | no | ./package.json | The path of your package.json file |
71
-
| `tag` | string | no | "latest" | The tag to publish to. This allows people to install the package using `npm install <package-name>@<tag>`. |
72
-
| `access` | string | no | "public" for non-scoped packages. "restricted" for scoped packages. | Determines whether the published package should be publicly visible, or restricted to members of your NPM organization. |
73
-
| `dry-run` | boolean | no | false | Run NPM publish with the `--dry-run` flag to prevent publication |
74
-
| `check-version` | boolean | no | true | Only publish to NPM if the version number in `package.json` differs from the latest on NPM |
75
-
| `greater-version-only` | boolean | no | false | Only publish to NPM if the version number in `package.json` is greater than the latest on NPM |
|`token` |string |**required** |The NPM auth token to use for publishing
69
+
|`registry` |string |https://registry.npmjs.org/ |The NPM registry URL to use
70
+
|`package` |string |./package.json |The path of your package.json file
71
+
|`tag` |string |"latest" |The tag to publish to. This allows people to install the package using `npm install <package-name>@<tag>`.
72
+
|`access` |string |"public" for non-scoped packages. "restricted" for scoped packages.|Determines whether the published package should be publicly visible, or restricted to members of your NPM organization.
73
+
|`dry-run` |boolean |false |Run NPM publish with the `--dry-run` flag to prevent publication
74
+
|`check-version` |boolean |true |Only publish to NPM if the version number in `package.json` differs from the latest on NPM
75
+
|`greater-version-only`|boolean |false |Only publish to NPM if the version number in `package.json` is greater than the latest on NPM |
0 commit comments