updated contributing guide sinopia section to deal with use auth issue
This commit is contained in:
parent
f170939c70
commit
dca6135d35
|
@ -14,6 +14,10 @@ Then, open `~/.config/sinopia/config.yaml` and configure it like this (note the
|
||||||
|
|
||||||
storage: ./storage
|
storage: ./storage
|
||||||
|
|
||||||
|
auth:
|
||||||
|
htpasswd:
|
||||||
|
file: ./htpasswd
|
||||||
|
|
||||||
uplinks:
|
uplinks:
|
||||||
npmjs:
|
npmjs:
|
||||||
url: https://registry.npmjs.org/
|
url: https://registry.npmjs.org/
|
||||||
|
@ -45,6 +49,7 @@ Now you can run sinopia by simply doing:
|
||||||
Now we need to publish the two React Native packages to our local registry. To do this, we configure npm to use the new registry, unpublish any existing packages and then publish the new ones:
|
Now we need to publish the two React Native packages to our local registry. To do this, we configure npm to use the new registry, unpublish any existing packages and then publish the new ones:
|
||||||
|
|
||||||
react-native$ npm set registry http://localhost:4873/
|
react-native$ npm set registry http://localhost:4873/
|
||||||
|
react-native$ npm adduser --registry http://localhost:4873/
|
||||||
# Check that it worked:
|
# Check that it worked:
|
||||||
react-native$ npm config list
|
react-native$ npm config list
|
||||||
react-native$ npm unpublish --force
|
react-native$ npm unpublish --force
|
||||||
|
|
Loading…
Reference in New Issue