Skip to content

Commit

Permalink
feat(history-service): history is now a peer dependency (#184)
Browse files Browse the repository at this point in the history
Closes #129
  • Loading branch information
clebert authored Dec 14, 2018
1 parent 7c45a89 commit 92dc0f1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions packages/demos/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"css-loader": "^2.0.0",
"express": "^4.16.4",
"get-port": "^4.0.0",
"history": "^4.7.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"style-loader": "^0.23.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/history-service/.size-limit.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
module.exports = [
{
path: 'lib/index.js',
limit: '6 KB'
limit: '2 KB'
}
];
9 changes: 6 additions & 3 deletions packages/history-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@
"typings": "lib/index.d.ts",
"dependencies": {
"@feature-hub/core": "^0.6.0",
"@feature-hub/server-renderer": "^0.6.0",
"history": "^4.7.2"
"@feature-hub/server-renderer": "^0.6.0"
},
"devDependencies": {
"@types/history": "^4.7.2"
"@types/history": "^4.7.2",
"history": "^4.7.2"
},
"peerDependencies": {
"history": "^4.7.2"
},
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 92dc0f1

Please sign in to comment.