@itentialopensource/adapter-utils 4.45.2 → 4.45.3

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/CHANGELOG.md +8 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,4 +1,12 @@
1
1
 
2
+ ## 4.45.3 [12-13-2021]
3
+
4
+ * move preinstall to postinstall
5
+
6
+ See merge request itentialopensource/adapter-utils!229
7
+
8
+ ---
9
+
2
10
  ## 4.45.2 [12-09-2021]
3
11
 
4
12
  * change for sending content-length with empty token body
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@itentialopensource/adapter-utils",
3
- "version": "4.45.2",
3
+ "version": "4.45.3",
4
4
  "description": "Itential Adapter Utility Libraries",
5
5
  "scripts": {
6
- "preinstall": "node utils/setup.js",
6
+ "postinstall": "node utils/setup.js",
7
7
  "lint": "eslint . --ext .json --ext .js",
8
8
  "lint:errors": "eslint --quiet . --ext .json --ext .js",
9
9
  "test:unit": "mocha test/unit/lib/requestHandlerTest.js --LOG=error && mocha test/unit/lib/restHandlerTest.js --LOG=error && mocha test/unit/lib/propertyUtilTest.js --LOG=error && mocha test/unit/lib/translatorUtilTest.js --LOG=error && mocha test/unit/lib/dbUtilTest.js --LOG=debug",