react-native-aztec
react-native-aztec copied to clipboard
Prepare component for publishing to npm
Publish to npm following the guidelines in https://docs.npmjs.com/getting-started/creating-node-modules
Will do after #6 gets merged - Note for when this gets tackled:
- [x] need to eliminate the line
"private": true,from package.json - [x] rename the package from
AztecReactNativeExampleApptoreact-native-aztec - [ ] check steps to publish in https://docs.npmjs.com/getting-started/publishing-npm-packages
Ok I think we can wait for the actual publishing to be done at some point in the future, when the component is stable enough and enters a maintenance / development lifecycle as to be published to the npm repo. In the meantime, we can use git urls as dependencies as explained here https://docs.npmjs.com/files/package.json#git-urls-as-dependencies
i.e.
"dependencies": {
"package": "git://github.com/username/package.git#commit"
}
h/t to @oskosk for the pointers here ☝️