github-issue-tower-defence-management 1.50.0 → 1.50.1

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.
@@ -34,6 +34,7 @@ jobs:
34
34
  node-version: 24
35
35
 
36
36
  - run: npm ci
37
+ - run: npm run prepare
37
38
  - run: npm run build
38
39
  - run: git config --global user.email "gh-actions"
39
40
  - run: git config --global user.name "gh-actions"
@@ -23,10 +23,13 @@ jobs:
23
23
  - name: Install dependencies
24
24
  run: npm ci
25
25
 
26
+ - name: Prepare
27
+ run: npm run prepare
28
+
26
29
  - name: Build
27
30
  run: npm run build
28
31
 
29
- - run: mkdir -p tmp && npx -y gh-cookie '${{ secrets.TEST_GH_USER_NAME }}' '${{ secrets.TEST_GH_USER_PASSWORD }}' '${{ secrets.TEST_GH_AUTHENTICATOR_KEY }}' > tmp/github.com.cookies.json
32
+ - run: mkdir -p tmp && npm_config_ignore_scripts=false npx -y gh-cookie '${{ secrets.TEST_GH_USER_NAME }}' '${{ secrets.TEST_GH_USER_PASSWORD }}' '${{ secrets.TEST_GH_AUTHENTICATOR_KEY }}' > tmp/github.com.cookies.json
30
33
  - name: Run tests
31
34
  run: npm run test
32
35
  env:
package/.prettierignore CHANGED
@@ -22,3 +22,4 @@ LICENSE
22
22
  CODEOWNERS
23
23
  types
24
24
  bin
25
+ .npmrc
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.50.1](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.50.0...v1.50.1) (2026-05-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **src:** resolve format and test CI failures caused by .npmrc settings ([0ce24ea](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/commit/0ce24eaa2e8a6421194e25e2ea7d34ebd9609555)), closes [#cookie](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/issues/cookie)
7
+
1
8
  # [1.50.0](https://github.com/HiromiShikata/npm-cli-github-issue-tower-defence-management/compare/v1.49.2...v1.50.0) (2026-05-21)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-issue-tower-defence-management",
3
- "version": "1.50.0",
3
+ "version": "1.50.1",
4
4
  "description": "",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {