From db54f7e0ba24bbb72a6721d7f947319a2efbba5e Mon Sep 17 00:00:00 2001 From: Jose Farias <31393016+josefarias@users.noreply.github.com> Date: Sat, 31 Aug 2024 14:00:13 -0600 Subject: [PATCH] Fix npm config (#204) Not causing any errors, but the current config is technically incorrect --- .npmignore | 2 +- package.json | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.npmignore b/.npmignore index c980a83..e4958ae 100644 --- a/.npmignore +++ b/.npmignore @@ -7,4 +7,4 @@ !app/assets/javascripts/ !app/assets/javascripts/hotwire_combobox.esm.js !app/assets/javascripts/hotwire_combobox.umd.js -README.md +!README.md diff --git a/package.json b/package.json index 21296d7..9b4e3dc 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,10 @@ "description": "An autocomplete combobox implementation for Ruby on Rails apps using Hotwire.", "module": "app/assets/javascripts/hotwire_combobox.esm.js", "main": "app/assets/javascripts/hotwire_combobox.umd.js", - "repository": "git@github.com:josefarias/hotwire_combobox.git", + "repository": { + "type": "git", + "url": "git+ssh://git@github.com/josefarias/hotwire_combobox.git" + }, "author": "Jose Farias ", "license": "MIT", "homepage": "https://hotwirecombobox.com",