From b30a98712a8931695ee9b71c88f641b48133c891 Mon Sep 17 00:00:00 2001 From: Julien Ripouteau Date: Wed, 10 Apr 2024 13:51:04 +0200 Subject: [PATCH] chore: update hot hook config in examples --- examples/fastify/package.json | 2 +- examples/hono/package.json | 2 +- examples/node_http_basic/package.json | 2 +- packages/hot_hook/CHANGELOG.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/fastify/package.json b/examples/fastify/package.json index 6184217..0f82f32 100644 --- a/examples/fastify/package.json +++ b/examples/fastify/package.json @@ -17,7 +17,7 @@ "dependencies": { "fastify": "^4.26.2" }, - "hot-hook": { + "hotHook": { "boundaries": [ "./services/**/*.ts" ] diff --git a/examples/hono/package.json b/examples/hono/package.json index e4d2099..ae39fba 100644 --- a/examples/hono/package.json +++ b/examples/hono/package.json @@ -15,7 +15,7 @@ "@hono/node-server": "^1.9.0", "hono": "^4.1.4" }, - "hot-hook": { + "hotHook": { "boundaries": [ "./views/**/*.tsx" ] diff --git a/examples/node_http_basic/package.json b/examples/node_http_basic/package.json index 0bce2a2..3743147 100644 --- a/examples/node_http_basic/package.json +++ b/examples/node_http_basic/package.json @@ -9,7 +9,7 @@ "hot-hook": "workspace:*", "@hot-hook/runner": "workspace:*" }, - "hot-hook": { + "hotHook": { "boundaries": [ "./app.ts" ] diff --git a/packages/hot_hook/CHANGELOG.md b/packages/hot_hook/CHANGELOG.md index d1d356c..f227ebc 100644 --- a/packages/hot_hook/CHANGELOG.md +++ b/packages/hot_hook/CHANGELOG.md @@ -35,7 +35,7 @@ ```jsonc // package.json { - "hot-hook": { + "hotHook": { "boundaries": ["./src/controllers/**/*.tsx"], }, }