Skip to content

Commit

Permalink
refactor: make @superset-ui/core peer dependency (#111)
Browse files Browse the repository at this point in the history
* refactor: 💡 make @superset-ui/core peer dependency

BREAKING CHANGE: @superset-ui/core becomes peer dependency
  • Loading branch information
kristw authored and zhaoyongjie committed Nov 17, 2021
1 parent 2b1f802 commit 6770b0e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
"access": "public"
},
"dependencies": {
"@superset-ui/core": "^0.10.0",
"@types/react": "^16.7.17",
"@types/react-loadable": "^5.4.2",
"prop-types": "^15.6.2",
Expand All @@ -39,7 +38,8 @@
"node-fetch": "^2.2.0"
},
"peerDependencies": {
"@superset-ui/connection": "^0.9.x",
"@superset-ui/core": "^0.10.0",
"@superset-ui/connection": "^0.10.0",
"react": "^15 || ^16"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@
"access": "public"
},
"dependencies": {
"@superset-ui/core": "^0.10.0",
"@types/d3-scale": "^2.0.2",
"d3-scale": "^2.1.2"
},
"peerDependencies": {
"@superset-ui/core": "^0.10.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@
"access": "public"
},
"dependencies": {
"@superset-ui/core": "^0.10.0",
"@types/d3-format": "^1.3.0",
"d3-format": "^1.3.2"
},
"peerDependencies": {
"@superset-ui/core": "^0.10.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@
"access": "public"
},
"dependencies": {
"@superset-ui/core": "^0.10.0",
"@types/d3-time": "^1.0.9",
"@types/d3-time-format": "^2.1.0",
"d3-time": "^1.0.10",
"d3-time-format": "^2.1.3"
},
"peerDependencies": {
"@superset-ui/core": "^0.10.0"
}
}

0 comments on commit 6770b0e

Please sign in to comment.