From 9d2b9ce724b8e72b421bcebe697dbe774978454b Mon Sep 17 00:00:00 2001 From: James Sumners Date: Wed, 27 Apr 2022 09:05:44 -0400 Subject: [PATCH] Rename Module This commit renames the module in accordance with the discussion in fastify/fastify/issues/3733 . --- package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index dcd62d9..d1cdbdd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "fastify-request-context", - "version": "2.2.0", + "name": "@fastify/request-context", + "version": "3.0.0", "description": "Request-scoped storage support, based on Asynchronous Local Storage, with fallback to cls-hooked for older Node versions", "license": "MIT", "maintainers": [ @@ -71,5 +71,8 @@ "lib/*", "index.js", "index.d.ts" - ] + ], + "publishConfig": { + "access": "public" + } }