Skip to content

Commit

Permalink
fix: remove cyclic dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
darthtrevino committed Mar 25, 2019
1 parent b5b1a37 commit dcbda3c
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -34,7 +34,7 @@
"homepage": "https://github.com/react-dnd/react-dnd",
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build --scope=dnd-core --scope=react-dnd --stream",
"build": "lerna run build --stream",
"unit_test": "jest",
"jest:watch": "jest --watch",
"jest:cov": "jest --coverage",
Expand Down
3 changes: 1 addition & 2 deletions packages/react-dnd-test-utils/package.json
Expand Up @@ -13,8 +13,7 @@
"devDependencies": {
"npm-run-all": "^4.1.5",
"react-dnd-test-backend": "^7.2.0",
"react-dnd": "^7.3.2",
"react": ">= 16.8.4",
"react": "link:../react-dnd/node_modules/react",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333"
},
Expand Down
1 change: 0 additions & 1 deletion packages/react-dnd/package.json
Expand Up @@ -37,7 +37,6 @@
"npm-run-all": "^4.1.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-dnd-test-utils": "link:../react-dnd-test-utils",
"rimraf": "^2.6.3",
"ts-loader": "^5.3.3",
"typescript": "^3.3.3333",
Expand Down
@@ -1,6 +1,6 @@
import * as React from 'react'
import * as TestUtils from 'react-dom/test-utils'
import { wrapInTestContext } from 'react-dnd-test-utils'
import { wrapInTestContext } from '../../../react-dnd-test-utils/src/wrapInTestContext'
import DropTarget from '../DropTarget'

describe('Connectors', () => {
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Expand Up @@ -12256,7 +12256,7 @@ react-typography@^0.16.18:
resolved "https://registry.yarnpkg.com/react-typography/-/react-typography-0.16.18.tgz#89341b63d615f1dfcf5e471797df5acce5bde1f3"
integrity sha512-BFkw59H2mkYRLLtHOT2UZve/9/RticAvL7o7rheOo/+tlwQyfF61wF2XzGRcA3IWASg+DbXnNViyywHBFlNj6A==

"react@>= 16.8.4", react@^16.8.4:
react@^16.8.4:
version "16.8.4"
resolved "https://registry.yarnpkg.com/react/-/react-16.8.4.tgz#fdf7bd9ae53f03a9c4cd1a371432c206be1c4768"
integrity sha512-0GQ6gFXfUH7aZcjGVymlPOASTuSjlQL4ZtVC5YKH+3JL6bBLCVO21DknzmaPlI90LN253ojj02nsapy+j7wIjg==
Expand Down

0 comments on commit dcbda3c

Please sign in to comment.