This repository has been archived by the owner on May 17, 2019. It is now read-only.
Releases: fusionjs/fusion-cli
Releases · fusionjs/fusion-cli
v0.1.12
v0.1.11
v0.1.10
Changelog
Highlighted Changes
- Switch expected test entry structure to colocated, glob-based pattern (#27)
Other Changes
- Add ES6/7 Polyfills (#33)
- Upgrade docker-compose plugin to v1.7.0 (#31)
- Handle errors in initial compilation in dev command (#30)
- Use Buildkite and Docker for CI (#26)
- Add initial implementation (#2)
Migration Guide
Test entries
Tests can now be colocated in arbitrary directories
Before
Only root is supported
src/test/browser/index.js
src/test/browser/index.js
After
Root
src/__tests__/foo.node.js
(node only)src/__tests__/bar.browser.js
(browser only)src/__tests__/qux.js
(universal)
Nested
src/subdir/__tests__/foo.node.js
(node only)src/subdir/__tests__/bar.browser.js
(browser only)src/subdir/__tests__/qux.js
(universal)