Skip to content

Commit b3ce8a9

Browse files
authoredMay 13, 2022
Merge pull request #30 from zardoy/patch-1
Improve documentation - simplify input parameters table
2 parents 0f451a9 + a2e2485 commit b3ce8a9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed
 

‎README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ Input Parameters
7272
--------------------------
7373
You can set any or all of the following input parameters:
7474
75-
|Name |Type |Required? |Default |Description
76-
|----------------|--------|----------|----------------------------|------------------------------------
77-
|`token` |string |yes | |The NPM auth token to use for publishing
78-
|`registry` |string |no |https://registry.npmjs.org/ |The NPM registry URL to use
79-
|`package` |string |no |./package.json |The path of your package.json file
80-
|`tag` |string |no |"latest" |The tag to publish to. This allows people to install the package using `npm install <package-name>@<tag>`.
81-
|`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.
82-
|`dry-run` |boolean |no |false |Run NPM publish with the `--dry-run` flag to prevent publication
83-
|`check-version` |boolean |no |true |Only publish to NPM if the version number in `package.json` differs from the latest on NPM
75+
|Name |Type |Default |Description
76+
|----------------|-------- |----------------------------|------------------------------------
77+
|`token` |string |**required** |The NPM auth token to use for publishing
78+
|`registry` |string |https://registry.npmjs.org/ |The NPM registry URL to use
79+
|`package` |string |./package.json |The path of your package.json file
80+
|`tag` |string |"latest" |The tag to publish to. This allows people to install the package using `npm install <package-name>@<tag>`.
81+
|`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.
82+
|`dry-run` |boolean |false |Run NPM publish with the `--dry-run` flag to prevent publication
83+
|`check-version` |boolean |true |Only publish to NPM if the version number in `package.json` differs from the latest on NPM
8484

8585

8686

0 commit comments

Comments
 (0)
Failed to load comments.