properties-comparator 1.0.2 → 1.0.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 (3) hide show
  1. package/PUBLISH.MD +13 -0
  2. package/README.md +2 -4
  3. package/package.json +1 -1
package/PUBLISH.MD CHANGED
@@ -1,3 +1,16 @@
1
+
2
+ ## Link your package locally for testing:
3
+
4
+ ### Test Locally
5
+ `npm link`
6
+
7
+
8
+ ## Now you can run the script globally using:
9
+
10
+ ```properties-comparator <filePath1> <filePath2>```
11
+
12
+
13
+
1
14
  ## Publish the Package
2
15
  ### Login to npm (if you haven't already):
3
16
  `npm login`
package/README.md CHANGED
@@ -4,10 +4,8 @@ This utility provides functionality to parse and compare properties files in the
4
4
  Utility is available as NPM Package [https://www.npmjs.com/package/properties-comparator](https://www.npmjs.com/package/properties-comparator)
5
5
 
6
6
 
7
- ## Link your package locally for testing:
8
-
9
- ### Test Locally
10
- `npm link`
7
+ ### Install the Package
8
+ `npm install -g properties-comparator`
11
9
 
12
10
 
13
11
  ## Now you can run the script globally using:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "properties-comparator",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "This utility provides functionality to parse and compare properties files in the format of key-value pairs. It reads properties files, compares the values for each key across multiple files, and logs the results.",
5
5
  "main": "index.js",
6
6
  "bin": {