temp-helper-linqjs 0.2.4 → 0.2.6

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 -5
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -183,8 +183,4 @@ const result = products
183
183
  .Select(p => p.name);
184
184
 
185
185
  console.log(result); // ['Desk', 'Laptop']
186
- ```
187
-
188
- ## 라이선스
189
-
190
- MIT License with Custom Modifications
186
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "temp-helper-linqjs",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "Array 프로토타입 확장 - LINQ 스타일 메서드",
5
5
  "main": "linq-module.js",
6
6
  "license": "EULA",
@@ -21,6 +21,7 @@
21
21
  "map"
22
22
  ],
23
23
  "scripts": {
24
- "test": "node example-usage.js"
24
+ "test": "node example-usage.js",
25
+ "xxx": "npm version patch && npm publish"
25
26
  }
26
27
  }