From 72091a559195d8225d7312db33935f5936af6389 Mon Sep 17 00:00:00 2001 From: Moses Otten Date: Thu, 2 Nov 2023 11:48:50 +0100 Subject: [PATCH 1/3] Fix typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21715e9..488a5cf 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ createApp(App).use(ChelseaDragger).mount('#app') The following example uses the array of items shown below. All items in this array are assigned to one of two lists by property `listId`. -The examples will implement draga and drop to update the an items `listId` by dragging the item and dropping it in the new list. +The examples will implement drag-and-drop to update the an items `listId` by dragging the item and dropping it in the new list. **Important**: Keep in mind that [vue needs a unique key in a loop, if the items may change](https://vuejs.org/guide/essentials/list.html#maintaining-state-with-key). From d49895fc2471526b7081dd0f6060bce74770ddd8 Mon Sep 17 00:00:00 2001 From: Moses Otten Date: Thu, 2 Nov 2023 11:52:07 +0100 Subject: [PATCH 2/3] 0.0.6 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9c70086..8935ef3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "chelsea-dragger", - "version": "0.0.3", + "version": "0.0.6", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "chelsea-dragger", - "version": "0.0.3", + "version": "0.0.6", "dependencies": { "vue": "^3.3.4" }, diff --git a/package.json b/package.json index 565033b..3f64843 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chelsea-dragger", - "version": "0.0.5", + "version": "0.0.6", "type": "module", "files": [ "dist" From f96ad3f410a1fa33ca1b9fd062e4291c3adc0f86 Mon Sep 17 00:00:00 2001 From: Moses Otten Date: Thu, 2 Nov 2023 14:25:19 +0100 Subject: [PATCH 3/3] Update package.json --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 3f64843..67a933d 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,10 @@ "bugs": { "url": "https://github.com/justanothermoses/chelsea-dragger/issues" }, + "repository": { + "type": "git", + "url": "https://github.com/justanothermoses/chelsea-dragger" + }, "author": { "name": "Moses Otten", "url": "https://github.com/justanothermoses"