Discovered the reason for the test builds failing: Ava had a breaking change at 0.17.0 that messed up everything having to do with relative and absolute paths as written in cli.js as well as the two test files themselves. I downgraded the ava version to ^0.16.0 and all tests are passing on my end now.
Additionally, I bumped the tachyons and tachyons-cli versions in templates/package.json and ran the start script (hence the new output). I also bumped the node versions for Travis and in package.json to match the current LTS (i.e. 6). Finally, I added standard as a devDependency along with an npm lint script`.
Discovered the reason for the test builds failing: Ava had a breaking change at 0.17.0 that messed up everything having to do with relative and absolute paths as written in
cli.js
as well as the two test files themselves. I downgraded the ava version to^0.16.0
and all tests are passing on my end now.Additionally, I bumped the
tachyons
andtachyons-cli
versions intemplates/package.json
and ran thestart
script (hence the new output). I also bumped the node versions for Travis and inpackage.json
to match the current LTS (i.e. 6). Finally, I addedstandard
as adevDependency
along with an npmlint
script`.