@autofleet/node-common 1.0.6 → 1.0.7

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 (3) hide show
  1. package/README.md +7 -0
  2. package/index.js +1 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -35,3 +35,10 @@ RIDE_SERVICE_HOST=jsonplaceholder.typicode.com
35
35
  ```
36
36
 
37
37
  To learn more [click here](https://blog.risingstack.com/designing-microservices-architecture-for-failure/).
38
+
39
+ ## Publish package
40
+ bump the version number in package.json
41
+ and run
42
+ ```
43
+ npm publish
44
+ ```
package/index.js CHANGED
@@ -1,3 +1,4 @@
1
1
  module.exports = {
2
2
  Network: require('./network'),
3
+ Logger: require('./logger'),
3
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/node-common",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {