Skip to content

Commit

Permalink
refactor: make @superset-ui/core peer dependency (apache#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 committed Feb 26, 2019
1 parent cae32ce commit e9c7b91
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/superset-ui-chart/package.json
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"
}
}
4 changes: 3 additions & 1 deletion packages/superset-ui-color/package.json
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"
}
}
4 changes: 3 additions & 1 deletion packages/superset-ui-number-format/package.json
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"
}
}
4 changes: 3 additions & 1 deletion packages/superset-ui-time-format/package.json
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 e9c7b91

Please sign in to comment.