Skip to content

Commit

Permalink
BREAKING CHANGE: move uuid as an optional dependency.
Browse files Browse the repository at this point in the history
This helps reduce the weight of code, especially when you don't intend on using uuids as ids
  • Loading branch information
mernxl committed Aug 11, 2018
1 parent 755fe01 commit ad27369
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@
"semantic-release": "semantic-release"
},
"dependencies": {
"event-to-promise": "^0.8.0",
"uuid": ">=3.0.1"
"event-to-promise": "^0.8.0"
},
"peerDependencies": {
"mongoose": ">=4.0.0 || >=5.0.0"
},
"optionalDependencies": {
"uuid": ">=3.0.1"
},
"jest": {
"roots": [
"<rootDir>/src"
Expand Down Expand Up @@ -78,6 +80,7 @@
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^3.0.1"
"typescript": "^3.0.1",
"uuid": ">=3.0.1"
}
}

0 comments on commit ad27369

Please sign in to comment.