v1.2.0
This release makes the switch to using Rollup for building artifacts in the dist
folder. The files in dist
are mostly similar to previous releases:
cashcash.js
is an uncompressed browser-suitable UMD file,cashcash.min.js
is a compressed version ofcashcash.js
, andcashcash.es.js
is an uncompressed ES6-compatible module file.
For development purposes, there are a few new or changed commands that can be run:
npm run build
will use Rollup to build files todist
,npm start
will use Rollup to build files todist
when changes tosrc/cashcash.js
are made, andnpm test
now uses npm-run-all to more efficiently run the various test scripts.
🎉