Releases: hoverinc/hover-javascript
Releases · hoverinc/hover-javascript
v7.0.0-beta.11
v7.0.0-beta.10
7.0.0-beta.10 (2022-12-17)
Features
v7.0.0-beta.9
7.0.0-beta.9 (2022-12-09)
Bug Fixes
- scripts/pre-commit: don't fail when no related tests are found (12c307b)
Features
- deps: upgrade commitlint (fcb02d2)
v7.0.0-beta.8
v7.0.0-beta.7
7.0.0-beta.7 (2022-12-09)
Features
- api/commit: add support for excluding directories in
ls.dirs()
(8648a39)
BREAKING CHANGES
- api/commit:
ls.dirs()
fromapi/commit
now takes an options
object as the second parameter instead of aprefix
. If you're using
a prefix you'll need to make the following change:
// Before
ls.dirs('./packages', 'my-prefix');
// After
ls.dirs('./packages', { prefix: 'my-prefix' });
- api/commit:
ls.dirs()
now excludesnode_modules
directories
by default. If for some reason you want to include `node_modules`,
you'll need to explicitly set `exclude` to `null`:
// Before
ls.dirs('./packages');
// After
ls.dirs('./packages', { exclude: null });
v6.92.0
v6.91.0
v6.90.1
v7.0.0-beta.6
7.0.0-beta.6 (2022-09-29)
Features
- config/jest:
@swc/jest
→@swc-node/jest
(supports tsconfig) (7627f06)
v7.0.0-beta.5
7.0.0-beta.5 (2022-09-25)
Bug Fixes
- config/jest: add jest-environment-jsdom as a dependency (adad36f)
Jest no longer bundles it as of 28.x... which makes sense as installing JSDOM when we're using the default testEnvironment
(node
) is pretty silly. For now, I'm opting to continue bundling it for the sake of simplicity, but we should probably consider modularizing @hover/javascript in the future so that we don't have to ship this sort of thing to all users.