lux-design-system 4.5.6 → 4.5.7
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 +12 -3
- package/dist/system/system.js +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,7 +89,16 @@ yarn run deploy
|
|
|
89
89
|
|
|
90
90
|
## To publish a new version to npm:
|
|
91
91
|
|
|
92
|
-
1. If you don't already have np installed, `yarn global add np`.
|
|
92
|
+
1. If you don't already have np installed, `yarn global add np`. If you are running an old version of node (e.g. Node 12), you may need to install an older version of np (e.g. `yarn global add np@6.5.0`)
|
|
93
|
+
1. If you have a passphrase on your ssh key, run
|
|
94
|
+
`ssh-add ~/.ssh/id_ed25519` (or wherever your key is located).
|
|
95
|
+
1. If you use a security key, rather than an authenticator app, for
|
|
96
|
+
two-factor authentication in npmjs.com, make sure that
|
|
97
|
+
"Require two-factor authentication for write actions" is not
|
|
98
|
+
checked in your account 2FA settings. If it is checked, np will
|
|
99
|
+
ask you for an OTP from your phone, and won't allow you to push
|
|
100
|
+
without it.
|
|
93
101
|
1. Pull latest main with merged changes.
|
|
94
|
-
|
|
95
|
-
|
|
102
|
+
1. Run `yarn login`
|
|
103
|
+
1. Run `yarn release`
|
|
104
|
+
1. :tada:
|