Skip to content

Commit

Permalink
Merge pull request #67 from minop1205/fix-66
Browse files Browse the repository at this point in the history
fix: unable to install in npm v7
  • Loading branch information
minop1205 authored Sep 24, 2021
2 parents 6d32868 + 1204927 commit 23866ce
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 26 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 1.5.4

_Sept 24, 2021_

### Fixed

- unable to install in npm version 7.

## 1.5.3

_Sept 08, 2021_
Expand Down
86 changes: 64 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@minoru/react-dnd-treeview",
"description": "A draggable / droppable React-based treeview component.",
"version": "1.5.3",
"version": "1.5.4",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -30,10 +30,10 @@
},
"dependencies": {
"immer": "^9.0.5",
"rdndmb-html5-to-touch": "^7.0.0-alpha.1",
"react-dnd": "^14.0.3",
"react-dnd-html5-backend": "^14.0.1",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^14.1.0"
"react-dnd-multi-backend": "^7.0.0-alpha.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
Expand Down
2 changes: 1 addition & 1 deletion src/providers/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { PropsWithChildren, ReactElement } from "react";
import { DndProvider } from "react-dnd-multi-backend";
import HTML5toTouch from "react-dnd-multi-backend/dist/cjs/HTML5toTouch";
import { HTML5toTouch } from "rdndmb-html5-to-touch";
import { TreeProvider, TreeContext } from "./TreeProvider";
import { DragControlProvider, DragControlContext } from "./DragControlProvider";
import { PlaceholderProvider, PlaceholderContext } from "./PlaceholderProvider";
Expand Down

0 comments on commit 23866ce

Please sign in to comment.