From 644124640b9e5787cbfd91ff6456f4354cc22581 Mon Sep 17 00:00:00 2001 From: James Sumners Date: Wed, 27 Apr 2022 09:09:42 -0400 Subject: [PATCH] Rename Module This commit renames the module in accordance with the discussion in fastify/fastify/issues/3733 . --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3267f1a..4a92a5e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "fastify-static", - "version": "4.6.1", + "name": "@fastify/static", + "version": "5.0.0", "description": "Plugin for serving static files as fast as possible.", "main": "index.js", "types": "index.d.ts", @@ -64,5 +64,8 @@ "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": "error" } + }, + "publishConfig": { + "access": "public" } }