mentie 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
1
  # Mentie
2
2
 
3
- Mentor's favorite helpers.
3
+ Mentor's favorite helpers.
4
+
5
+ Notes:
6
+
7
+ - If you're going to use promise utilities `make_retryable` and `throttle_and_retry`, make sure to install their dependencies: `npm i -S promise-retry promise-parallel-throttle`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mentie",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Mentor's toolbelt",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -27,7 +27,7 @@
27
27
  "eslint-plugin-unused-imports": "^3.2.0",
28
28
  "husky": "^9.1.3"
29
29
  },
30
- "dependencies": {
30
+ "peerDependencies": {
31
31
  "promise-parallel-throttle": "^3.5.0",
32
32
  "promise-retry": "^2.0.1"
33
33
  }