temp-helper-linqjs 0.2.7 → 0.2.9

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.
@@ -6,21 +6,10 @@ name: Node.js Package
6
6
  on: [push]
7
7
 
8
8
  jobs:
9
- build:
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - uses: actions/checkout@v4
14
- - run: git config --global user.email "wymoon2690@gmail.com"
15
- - run: git config --global user.name "GitHub Actions"
16
- - uses: actions/setup-node@v4
17
- with:
18
- node-version: 20
19
- - run: npm test
20
-
21
9
  publish-npm:
22
- needs: build
23
10
  runs-on: ubuntu-latest
11
+ permissions: # [3] 푸시 권한 부여 필수
12
+ contents: write
24
13
  steps:
25
14
  - uses: actions/checkout@v4
26
15
  - run: git config --global user.email "wymoon2690@gmail.com"
@@ -29,6 +18,7 @@ jobs:
29
18
  with:
30
19
  node-version: 20
31
20
  registry-url: https://registry.npmjs.org/
21
+ - run: npm test
32
22
  - run: npm version patch
33
23
  - run: npm publish
34
24
  env:
package/linq-module.js CHANGED
@@ -2,9 +2,8 @@
2
2
  * Array 프로토타입 확장 - LINQ 스타일 메서드
3
3
  * C# LINQ와 유사한 쿼리 메서드를 JavaScript Array에 추가합니다.
4
4
  * @module helper-linqjs
5
- * @version 0.2.1
6
5
  * @author WooYoung
7
- * @license MIT
6
+ * @license Custom License
8
7
  */
9
8
 
10
9
  (function() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "temp-helper-linqjs",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "description": "Array 프로토타입 확장 - LINQ 스타일 메서드",
5
5
  "main": "linq-module.js",
6
6
  "license": "EULA",