33 lines
802 B
Plaintext
33 lines
802 B
Plaintext
This project is developed internally at RT Specialty / LoVullo.
|
|
|
|
For more information, see the section "Hacking Liza" in the manual.
|
|
|
|
|
|
Publishing New Versions
|
|
=======================
|
|
To build and publish a new version on NPM:
|
|
|
|
- Tag version with 'v' prefix
|
|
- Regenerate `configure' with version information:
|
|
$ ./autogen.sh
|
|
- Test:
|
|
$ ./configure && make
|
|
- Create tarball:
|
|
$ make dist
|
|
- Publish:
|
|
$ npm publish liza-VERSION.tar.gz
|
|
|
|
If your system cannot create a distribution tarball for whatever reason
|
|
(e.g. because of large user/group ids), then you'll have to create a
|
|
distribution directory instead:
|
|
|
|
- Create distribution:
|
|
$ make distdir
|
|
- Publish:
|
|
$ npm publish liza-VERSION/
|
|
|
|
|
|
If you have a personal account on NPM, you may use that; otherwise,
|
|
use the `lovullo' account.
|
|
|