From 2d6b00173299d7a887e83af84b503a32fef089b0 Mon Sep 17 00:00:00 2001 From: Chris Krycho Date: Fri, 20 Dec 2024 17:02:58 -0700 Subject: [PATCH] chore: make release-able by fixing `repository` in package.json Without this: ``` ERROR npm warn publish npm auto-corrected some errors in your package.json when publishing. Please run "npm pkg fix" to address these errors. ``` Running `npm pkg fix` results in this change. --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 7f0a989..e0acc6c 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,10 @@ "keywords": [ "ember-addon" ], - "repository": "git@github.com:emberjs/ember-render-modifiers.git", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/emberjs/ember-render-modifiers.git" + }, "license": "MIT", "author": "Robert Jackson ", "main": "index.js",