Skip to content

Commit

Permalink
chore: releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-R44 committed Apr 17, 2024
1 parent c0defa6 commit 2c6f314
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 35 deletions.
33 changes: 0 additions & 33 deletions .changeset/healthy-houses-kneel.md

This file was deleted.

7 changes: 7 additions & 0 deletions packages/dump_viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hot-hook/dump-viewer

## 0.3.0

### Patch Changes

- Updated dependencies [c0defa6]
- [email protected]

## 0.2.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/dump_viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hot-hook/dump-viewer",
"version": "0.2.4",
"version": "0.3.0",
"type": "module",
"files": [
"build"
Expand Down
30 changes: 30 additions & 0 deletions packages/hot_hook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# hot-hook

## 0.2.0

### Minor Changes

- c0defa6: From this commit, if you are using `--import=hot-hook/register` for using hot-hook, the `package.json` will be used for resolving glob patterns in the `boundaries` config.

That means, if you had a `package.json` with the following content, and a root entrypoint in `./src/start.ts`, glob patterns were resolved from `./src/start.ts` file :

```json
{
"name": "my-package",
"version": "1.0.0",
"hot-hook": {
"boundaries": ["./controllers/**/*"]
}
}
```

This configuration was matching all files in the `./src/controllers` directory. To achieve the same result, you should now use the following configuration:

```json
{
"name": "my-package",
"version": "1.0.0",
"hot-hook": {
"boundaries": ["./src/controllers/**/*"]
}
}
```

## 0.1.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/hot_hook/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hot-hook",
"description": "Easy hot module reloading (HMR) for Node.js and ESM",
"version": "0.1.10",
"version": "0.2.0",
"main": "index.js",
"type": "module",
"files": [
Expand Down

0 comments on commit 2c6f314

Please sign in to comment.