@creejs/commons-retrier 2.1.2 → 2.1.5

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 +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Commons-retrier Library provides a Retrier to:
4
4
 
5
- - **Retry a task until it matches your want**
5
+ - **Retry a task until it matches what you want**
6
6
 
7
7
  - **Options**:
8
8
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creejs/commons-retrier",
3
- "version": "2.1.2",
3
+ "version": "2.1.5",
4
4
  "description": "Common Utils About Task Retrying",
5
5
  "keywords": [
6
6
  "commons",
@@ -52,12 +52,12 @@
52
52
  "generate-docs": "../../node_modules/.bin/jsdoc -c ./jsdoc.json",
53
53
  "clean": "rm -rf dist && rm -rf types",
54
54
  "build": "npm run clean && npm run dts && rollup -c",
55
- "publish": "npm publish"
55
+ "prepublishOnly": "npm run build"
56
56
  },
57
57
  "author": "rodney.vin@gmail.com",
58
58
  "license": "Apache-2.0",
59
59
  "dependencies": {
60
- "@creejs/commons-events": "^2.1.2",
61
- "@creejs/commons-lang": "^2.1.2"
60
+ "@creejs/commons-events": "^2.1.5",
61
+ "@creejs/commons-lang": "^2.1.1"
62
62
  }
63
63
  }