pob 29.4.0 → 29.5.0
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 +6 -0
- package/lib/generators/common/release/templates/workflow-release.yml.ejs +1 -1
- package/lib/generators/core/ci/templates/github-action-documentation-workflow.yml.ejs +1 -1
- package/lib/generators/core/ci/templates/github-action-push-workflow-split.yml.ejs +6 -6
- package/lib/generators/core/ci/templates/github-action-push-workflow.yml.ejs +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [29.5.0](https://github.com/christophehurpeau/pob/compare/pob@29.4.0...pob@29.5.0) (2025-10-27)
|
|
7
|
+
|
|
8
|
+
Version bump for dependency: yarn-workspace-utils
|
|
9
|
+
Version bump for dependency: @pob/root
|
|
10
|
+
|
|
11
|
+
|
|
6
12
|
## [29.4.0](https://github.com/christophehurpeau/pob/compare/pob@29.3.1...pob@29.4.0) (2025-10-26)
|
|
7
13
|
|
|
8
14
|
### Features
|
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
- name: Enable Corepack
|
|
14
14
|
run: corepack enable
|
|
15
15
|
|
|
16
|
-
- uses: actions/setup-node@
|
|
16
|
+
- uses: actions/setup-node@v6
|
|
17
17
|
with:
|
|
18
18
|
node-version: <%= nodeLatestMajorVersion %>
|
|
19
19
|
check-latest: true
|
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
43
43
|
- name: Enable Corepack
|
|
44
44
|
run: corepack enable
|
|
45
45
|
|
|
46
|
-
- uses: actions/setup-node@
|
|
46
|
+
- uses: actions/setup-node@v6
|
|
47
47
|
with:
|
|
48
48
|
node-version: <%= nodeLatestMajorVersion %>
|
|
49
49
|
check-latest: true
|
|
@@ -75,7 +75,7 @@ jobs:
|
|
|
75
75
|
- name: Enable Corepack
|
|
76
76
|
run: corepack enable
|
|
77
77
|
|
|
78
|
-
- uses: actions/setup-node@
|
|
78
|
+
- uses: actions/setup-node@v6
|
|
79
79
|
with:
|
|
80
80
|
node-version: <%= nodeLatestMajorVersion %>
|
|
81
81
|
check-latest: true
|
|
@@ -114,7 +114,7 @@ jobs:
|
|
|
114
114
|
run: corepack enable
|
|
115
115
|
|
|
116
116
|
<% } -%>
|
|
117
|
-
- uses: actions/setup-node@
|
|
117
|
+
- uses: actions/setup-node@v6
|
|
118
118
|
with:
|
|
119
119
|
node-version: ${{ matrix.node-version }}
|
|
120
120
|
check-latest: true
|
|
@@ -172,7 +172,7 @@ jobs:
|
|
|
172
172
|
- name: Enable Corepack
|
|
173
173
|
run: corepack enable
|
|
174
174
|
|
|
175
|
-
- uses: actions/setup-node@
|
|
175
|
+
- uses: actions/setup-node@v6
|
|
176
176
|
with:
|
|
177
177
|
node-version: ${{ matrix.node-version }}
|
|
178
178
|
check-latest: true
|
|
@@ -196,7 +196,7 @@ jobs:
|
|
|
196
196
|
steps:
|
|
197
197
|
- uses: actions/checkout@v5
|
|
198
198
|
|
|
199
|
-
- uses: actions/setup-node@
|
|
199
|
+
- uses: actions/setup-node@v6
|
|
200
200
|
with:
|
|
201
201
|
node-version: <%= nodeLatestMajorVersion %>
|
|
202
202
|
check-latest: true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "29.
|
|
3
|
+
"version": "29.5.0",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -67,17 +67,17 @@
|
|
|
67
67
|
"mem-fs-editor": "11.1.4",
|
|
68
68
|
"minimist": "1.2.8",
|
|
69
69
|
"parse-author": "2.0.0",
|
|
70
|
-
"pob-dependencies": "20.4.
|
|
70
|
+
"pob-dependencies": "20.4.1",
|
|
71
71
|
"prettier": "3.6.2",
|
|
72
72
|
"semver": "7.7.3",
|
|
73
73
|
"typescript": "5.9.3",
|
|
74
74
|
"validate-npm-package-name": "^6.0.2",
|
|
75
|
-
"yarn-workspace-utils": "9.4.
|
|
75
|
+
"yarn-workspace-utils": "9.4.1",
|
|
76
76
|
"yeoman-environment": "5.0.0",
|
|
77
77
|
"yeoman-generator": "7.5.1"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@pob/root": "19.
|
|
80
|
+
"@pob/root": "19.5.0",
|
|
81
81
|
"@types/node": "22.18.12"
|
|
82
82
|
}
|
|
83
83
|
}
|