neon 0.4.0

A safe abstraction layer for Node.js.
Documentation
#!/bin/bash

DEV=$(dirname $0)
NEON=$(cd $DEV/.. && pwd)

# ISSUE(#319): this script is not yet tested in production

(cd "$NEON/cli" && npm publish) || exit $?
(cd "$NEON/crates/neon-build" && cargo publish) || exit $?
(cd "$NEON/crates/neon-runtime" && cargo publish) || exit $?
(cd "$NEON" && cargo publish) || exit $?