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
Copy file name to clipboardExpand all lines: readme.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ Currently, these are the flags you can configure:
96
96
-`contents` - Subdirectory to publish (`.` by default).
97
97
-`releaseDraft` - Open a GitHub release draft after releasing (`true` by default).
98
98
-`testScript` - Name of npm run script to run tests before publishing (`test` by default).
99
-
-`2fa` - Enable 2FA on new packages (`true` by default) (it's not recommended to set this to `false`).
99
+
-`2fa` - Enable 2FA on new packages (`true` by default) (setting this to `false` is not recommended).
100
100
101
101
For example, this configures `np` to never use Yarn and to use `dist` as the subdirectory to publish:
102
102
@@ -164,7 +164,7 @@ You can also add `np` to a custom script in `package.json`. This can be useful i
164
164
165
165
### User-defined tests
166
166
167
-
If you want to run a user-defined test script before publishing instead of the normal `npm test` or `yarn test`, you can use `--test-script` flag or the `testScript` config. This is can be useful when your normal test script is running with a `--watch`mode or in case you want to run some specific tests (maybe on the packaged files) before publishing.
167
+
If you want to run a user-defined test script before publishing instead of the normal `npm test` or `yarn test`, you can use `--test-script` flag or the `testScript` config. This can be useful when your normal test script is running with a `--watch`flag or in case you want to run some specific tests (maybe on the packaged files) before publishing.
168
168
169
169
For example, `np --test-script=publish-test` would run the `publish-test` script instead of the default `test`.
170
170
@@ -201,7 +201,7 @@ $ yarn config set version-sign-git-tag true
201
201
202
202
You can use `np` for packages that aren't publicly published to npm (perhaps installed from a private git repo).
203
203
204
-
Set `"private": true` in your `package.json` and the publish step will be skipped. All other steps
204
+
Set `"private": true` in your `package.json` and the publishing step will be skipped. All other steps
205
205
including versioning and pushing tags will still be completed.
206
206
207
207
### Public scoped packages
@@ -268,7 +268,7 @@ $ git push --set-upstream origin HEAD
268
268
$ np patch --any-branch --tag=v1
269
269
```
270
270
271
-
### Prerequisite step runs forever on macOS
271
+
### The prerequisite step runs forever on macOS
272
272
273
273
If you're using macOS Sierra 10.12.2 or later, your SSH key passphrase is no longer stored into the keychain by default. This may cause the `prerequisite` step to run forever because it prompts for your passphrase in the background. To fix this, add the following lines to your `~/.ssh/config` and run a simple Git command like `git fetch`.
0 commit comments