From b2478de6e7875918a6cadd6d60d330431b1cafeb Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Tue, 29 Mar 2016 14:33:32 -0400 Subject: [PATCH] Add npm instructions for developers * README.hacking: added Developers at LoVullo are not familiar with building or deploying npm packages. --- README.hacking | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.hacking diff --git a/README.hacking b/README.hacking new file mode 100644 index 0000000..07fa015 --- /dev/null +++ b/README.hacking @@ -0,0 +1,19 @@ +This project is developed internally at LoVullo Associates. + + +Publishing New Versions +======================= +To build and publish a new version on NPM: + +- Bump version in configure.ac +- Test: + $ ./autogen.sh && ./configure && make +- Tag version with 'v' prefix +- Create tarball: + $ make dist +- Publish: + $ npm publish liza-VERSION.tar.gz + +If you have a personal account on NPM, you may use that; otherwise, +use the `lovullo' account. +