Skip to content

Releases: hoverinc/hover-javascript

v7.0.0-beta.11

10 Jan 22:30
446707a
Compare
Choose a tag to compare
v7.0.0-beta.11 Pre-release
Pre-release

7.0.0-beta.11 (2023-01-10)

Bug Fixes

v7.0.0-beta.10

17 Dec 10:00
Compare
Choose a tag to compare
v7.0.0-beta.10 Pre-release
Pre-release

7.0.0-beta.10 (2022-12-17)

Features

  • deps: update eslint (17e60e0)
  • deps: upgrade Prettier to 2.8.1 (3f56e8a)

v7.0.0-beta.9

09 Dec 23:18
Compare
Choose a tag to compare
v7.0.0-beta.9 Pre-release
Pre-release

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

09 Dec 22:32
a5d4057
Compare
Choose a tag to compare
v7.0.0-beta.8 Pre-release
Pre-release

7.0.0-beta.8 (2022-12-09)

Features

  • deps: upgrade @swc-node/jest and @swc/core (a5d4057)

v7.0.0-beta.7

09 Dec 21:46
Compare
Choose a tag to compare
v7.0.0-beta.7 Pre-release
Pre-release

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() from api/commit now takes an options
    object as the second parameter instead of a prefix. 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 excludes node_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

09 Dec 21:48
Compare
Choose a tag to compare

6.92.0 (2022-12-09)

Features

  • deps: update dependency commitizen to ^4.2.6 (2547de7)
  • deps: update dependency mkdirp to ^1.0.4 (da73557)

v6.91.0

09 Dec 21:45
Compare
Choose a tag to compare

6.91.0 (2022-12-09)

Features

v6.90.1

05 Oct 21:17
24ab346
Compare
Choose a tag to compare

6.90.1 (2022-10-05)

Bug Fixes

  • scripts: move depcheck to main dep so other apps can use it (b284128)

v7.0.0-beta.6

29 Sep 04:03
7627f06
Compare
Choose a tag to compare
v7.0.0-beta.6 Pre-release
Pre-release

7.0.0-beta.6 (2022-09-29)

Features

  • config/jest: @swc/jest@swc-node/jest (supports tsconfig) (7627f06)

v7.0.0-beta.5

29 Sep 04:00
c81409e
Compare
Choose a tag to compare
v7.0.0-beta.5 Pre-release
Pre-release

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.