Assumes opam with OCaml 4.08 or later.
# Installs all dependencies (if needed) and builds reanalyze
npm install
npm run build
To build targeting 4.06 compiler libs (needed for ReScript projects) whatever the compiler version used:
npm run build406
Make sure to always run the tests before submitting any changes (CI usually takes longer to give you feedback).
npm run build406
npm test
The project is compatible with the npm version
workflow. After using the npm version [major|minor|patch|...]
command, npm will automatically tag the
current commit, bump all the necessary version numbers (also the number in
src/Version.ml
) and push it to the current remote branch.
Use the ...
menu next to the tag to create a release manually. (To be automated later).
Here are the concrete commands to run:
# Make sure to commit & push all current changes, the working branch should be clean
# and synced up with your remote branch
# Also make sure that your current branch is explicitly set to the relevant remote
# (`git push` instead of `git push origin master`)
git status
# For patches (0.0.X+1)
npm version patch
# For minor (0.X+1.0)
npm version minor
# For major (X+1.0.0)
npm version major
Use the GitHub web iterface to download the artifact reanalyze-npm.tar
and zip it.
# Dry run for testing
npm publish reanalyze-npm.tar.gz --dry-run
# Publish package as @latest
npm publish reanalyze-npm.tar.gz
# Publish package with @beta tag
npm publish reanalyze-npm.tar.gz --tag beta
Consult the npm publish documentation for more options.
In case you get an ENEEDAUTH
error, use npm adduser
and authenticate with your npm account first.
docker build -t opam-publish --pull .
docker run --rm -it -v ~/.ssh:/home/opam/.ssh -v `pwd`:/data opam-publish bash
cd /data
opam publish