From c08be0322e62a2b1df3bc172327365825e80fbe9 Mon Sep 17 00:00:00 2001 From: Dipendra Upreti Date: Tue, 20 Aug 2024 16:07:54 +0545 Subject: [PATCH 1/3] feat(fastify): update version of fastify-plugin --- generators/fastify-plugin/templates/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/fastify-plugin/templates/package.json b/generators/fastify-plugin/templates/package.json index d899400..6a934e2 100644 --- a/generators/fastify-plugin/templates/package.json +++ b/generators/fastify-plugin/templates/package.json @@ -44,7 +44,7 @@ "eslint-plugin-promise": "6.1.1", "eslint-plugin-unicorn": "46.0.1", "fastify": "4.10.2", - "fastify-plugin": "4.4.0", + "fastify-plugin": "4.5.1", "prettier": "2.8.8", "typescript": "4.9.5", "vite": "4.5.3", From ea45606288841f336ed52b60c81db02a2158b991 Mon Sep 17 00:00:00 2001 From: Dipendra Upreti Date: Tue, 20 Aug 2024 17:34:56 +0545 Subject: [PATCH 2/3] chore(fastify): update pacakge.json --- generators/fastify-plugin/templates/package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/generators/fastify-plugin/templates/package.json b/generators/fastify-plugin/templates/package.json index 6a934e2..4878fe3 100644 --- a/generators/fastify-plugin/templates/package.json +++ b/generators/fastify-plugin/templates/package.json @@ -1,11 +1,11 @@ { "name": "@<%= scope %>/<%= name %>", - "version": "@<%= version %>", + "version": "<%= version %>", "description": "<%= baseName %> plugin for fastify", - "homepage": "https://github.com/<%= scope %>/<%= name %>", + "homepage": "https://github.com/<%= scope %>/<%= baseName %>/tree/main/packages/fastify#readme", "repository": { "type": "git", - "url": "git+https://github.com/<%= scope %>/<%= name %>.git", + "url": "git+https://github.com/<%= scope %>/<%= baseName %>.git", "directory": "packages/fastify" }, "license": "MIT", @@ -16,8 +16,8 @@ "require": "./dist/<%= scope %>-<%= name %>.umd.cjs" } }, - "main": "./dist/<%= scope %>-<%= name %>-fastify.umd.cjs", - "module": "./dist/<%= scope %>-<%= name %>-fastify.js", + "main": "./dist/<%= scope %>-<%= name %>.umd.cjs", + "module": "./dist/<%= scope %>-<%= name %>.js", "types": "./dist/types/index.d.ts", "files": [ "dist" From 42b5997526f965b50cd94dbd1b662a327d50614b Mon Sep 17 00:00:00 2001 From: Dipendra Upreti Date: Wed, 21 Aug 2024 11:01:00 +0545 Subject: [PATCH 3/3] chore(fastify): update package.json --- generators/fastify-plugin/templates/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/fastify-plugin/templates/package.json b/generators/fastify-plugin/templates/package.json index 4878fe3..86bd5d2 100644 --- a/generators/fastify-plugin/templates/package.json +++ b/generators/fastify-plugin/templates/package.json @@ -56,6 +56,6 @@ }, "peerDependencies": { "fastify": ">=4.10.2", - "fastify-plugin": ">=4.4.0" + "fastify-plugin": ">=4.5.1" } }