create-node-lib 2.13.2 → 2.13.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [2.13.3](https://github.com/lirantal/create-node-lib/compare/v2.13.2...v2.13.3) (2026-03-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* disable release-preview job in ci.yml ([34f1f88](https://github.com/lirantal/create-node-lib/commit/34f1f888258a116bf9106d99aab54eee82f1f43f))
|
|
7
|
+
* update create-issue-from-file action to v6.0.0 ([cda8b3a](https://github.com/lirantal/create-node-lib/commit/cda8b3a8cfcafd9c5d1ad355c49a691467fac663))
|
|
8
|
+
* update pnpm/action-setup to version 5 ([5b1ba6c](https://github.com/lirantal/create-node-lib/commit/5b1ba6c02e7dc4b581d7aec3c7a8c65eea0bdef8))
|
|
9
|
+
* Update pnpm/action-setup to version 5 ([94f27a1](https://github.com/lirantal/create-node-lib/commit/94f27a17229fc46ea8885c5b8b8d9c6b28e68d70))
|
|
10
|
+
* Upgrade pnpm/action-setup to version 5 ([23b43a8](https://github.com/lirantal/create-node-lib/commit/23b43a8278960119be8d935bc740121bfbddf357))
|
|
11
|
+
|
|
1
12
|
## [2.13.2](https://github.com/lirantal/create-node-lib/compare/v2.13.1...v2.13.2) (2026-03-26)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
runs-on: ${{matrix.platform}}
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v6
|
|
15
|
-
- uses: pnpm/action-setup@
|
|
15
|
+
- uses: pnpm/action-setup@v5
|
|
16
16
|
- uses: actions/setup-node@v6
|
|
17
17
|
with:
|
|
18
18
|
node-version: ${{matrix.node}}
|
|
@@ -35,19 +35,21 @@ jobs:
|
|
|
35
35
|
env:
|
|
36
36
|
CI: true
|
|
37
37
|
|
|
38
|
-
release-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
38
|
+
## OPTIONAL: enable package release preview using pkg-pr-new
|
|
39
|
+
# release-preview:
|
|
40
|
+
# runs-on: ubuntu-latest
|
|
41
|
+
# needs: test
|
|
42
|
+
# steps:
|
|
43
|
+
# - uses: actions/checkout@v6
|
|
44
|
+
# - uses: pnpm/action-setup@v5
|
|
45
|
+
# - uses: actions/setup-node@v6
|
|
46
|
+
# with:
|
|
47
|
+
# node-version: "22.x"
|
|
48
|
+
# cache: 'pnpm'
|
|
49
|
+
# - name: install dependencies
|
|
50
|
+
# run: pnpm install --frozen-lockfile
|
|
51
|
+
# - name: build project
|
|
52
|
+
# run: pnpm run build
|
|
53
|
+
# - name: release preview with pkr-pr-new
|
|
54
|
+
# run: pnpx pkg-pr-new publish
|
|
55
|
+
|
|
@@ -24,8 +24,8 @@ jobs:
|
|
|
24
24
|
|
|
25
25
|
- name: Create Issue From File
|
|
26
26
|
if: env.lychee_exit_code != 0
|
|
27
|
-
uses: peter-evans/create-issue-from-file@
|
|
27
|
+
uses: peter-evans/create-issue-from-file@fca9117c27cdc29c6c4db3b86c48e4115a786710 # v6.0.0
|
|
28
28
|
with:
|
|
29
29
|
title: Link Checker Report
|
|
30
30
|
content-filepath: ./lychee/out.md
|
|
31
|
-
labels: report, automated issue
|
|
31
|
+
labels: report, automated issue
|