From 4ff5e2308d7646617e7a85e3547389279cbb9a6f Mon Sep 17 00:00:00 2001 From: Romulus21 Date: Sun, 26 Jul 2020 22:21:27 +0200 Subject: [PATCH] fix npm update --- package.json | 18 +++++++++--------- public/js/app.js.LICENSE.txt | 12 ++++++------ resources/js/views/ToDoLists/ToDoListShow.vue | 2 -- 3 files changed, 15 insertions(+), 17 deletions(-) diff --git a/package.json b/package.json index 3ea767e..13bd4de 100644 --- a/package.json +++ b/package.json @@ -17,29 +17,29 @@ "cross-env": "^7.0", "eslint": "^6.8.0", "eslint-config-standard": "^14.1.1", - "eslint-loader": "^3.0.3", - "eslint-plugin-import": "^2.20.2", + "eslint-loader": "^3.0.4", + "eslint-plugin-import": "^2.22.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "eslint-plugin-vue": "^6.2.2", "laravel-mix": "^5.0.1", "laravel-mix-eslint": "^0.1.3", - "laravel-mix-purgecss": "^5.0.0-rc.2", - "lodash": "^4.17.13", + "laravel-mix-purgecss": "^5.0.0", + "lodash": "^4.17.19", "resolve-url-loader": "^2.3.1", - "sass": "^1.20.1", + "sass": "^1.26.10", "sass-loader": "^8.0.0", "vue": "^2.5.17", - "vue-router": "^3.1.6", + "vue-router": "^3.3.4", "vue-template-compiler": "^2.6.10", - "vuex": "^3.1.3" + "vuex": "^3.5.1" }, "dependencies": { - "dropzone": "^5.7.0", + "dropzone": "^5.7.2", "laravel-mix-svg-vue": "^0.2.6", "markdown-it": "^10.0.0", "markdown-it-checkbox": "^1.1.0", - "tailwindcss": "^1.3.5" + "tailwindcss": "^1.5.2" } } diff --git a/public/js/app.js.LICENSE.txt b/public/js/app.js.LICENSE.txt index 26358a1..da63002 100644 --- a/public/js/app.js.LICENSE.txt +++ b/public/js/app.js.LICENSE.txt @@ -4,6 +4,12 @@ * Released under the MIT License. */ +/*! + * vuex v3.5.1 + * (c) 2020 Evan You + * @license MIT + */ + /*! https://mths.be/punycode v1.4.1 by @mathias */ /** @@ -14,9 +20,3 @@ * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors */ - -/** - * vuex v3.1.3 - * (c) 2020 Evan You - * @license MIT - */ diff --git a/resources/js/views/ToDoLists/ToDoListShow.vue b/resources/js/views/ToDoLists/ToDoListShow.vue index e1f7899..164c1ef 100644 --- a/resources/js/views/ToDoLists/ToDoListShow.vue +++ b/resources/js/views/ToDoLists/ToDoListShow.vue @@ -99,14 +99,12 @@ export default { }, methods: { startDrag: (evt, item) => { - console.log('start', item) evt.dataTransfer.dropEffect = 'move' evt.dataTransfer.effectAllowed = 'move' evt.dataTransfer.setData('toDoID', item.data.to_do_id) evt.dataTransfer.setData('toDoOrder', item.data.attributes.data.order) }, onDrop (evt, toDoEnd) { - console.log('drop', evt, toDoEnd) const toDoID = parseInt(evt.dataTransfer.getData('toDoID'), 10) const toDoOrder = parseInt(evt.dataTransfer.getData('toDoOrder'), 10) let toDoMove = this.toDoList.data.attributes.data.to_dos.data.find(toDo => toDo.data.to_do_id === toDoID)