v0.3.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:
templatetemplate.js
is an uncompressed browser-suitable UMD file,templatetemplate.min.js
is a compressed version oftemplatetemplate.js
, andtemplatetemplate.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/templatetemplate.js
are made, andnpm test
now uses npm-run-all to more efficiently run the various test scripts.
🎉