pob 31.0.1 → 31.1.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 +19 -0
- package/lib/generators/common/release/templates/workflow-release.yml.ejs +2 -2
- package/lib/generators/core/bun/templates/bunfig.toml.ejs +1 -0
- 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/lib/generators/core/git/generators/github/CoreGitGithubGenerator.js +1 -1
- package/lib/generators/monorepo/workspaces/MonorepoWorkspacesGenerator.js +3 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [31.1.0](https://github.com/christophehurpeau/pob/compare/pob@31.0.2...pob@31.1.0) (2025-12-06)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* update actions/checkout from v5 to v6 in workflow files
|
|
11
|
+
|
|
12
|
+
Version bump for dependency: @pob/root
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [31.0.2](https://github.com/christophehurpeau/pob/compare/pob@31.0.1...pob@31.0.2) (2025-12-06)
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* better bun support
|
|
20
|
+
* change error throw to warning for missing GITHUB_TOKEN
|
|
21
|
+
|
|
22
|
+
Version bump for dependency: @pob/root
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [31.0.1](https://github.com/christophehurpeau/pob/compare/pob@31.0.0...pob@31.0.1) (2025-12-06)
|
|
7
26
|
|
|
8
27
|
### Bug Fixes
|
|
@@ -32,7 +32,7 @@ jobs:
|
|
|
32
32
|
release:
|
|
33
33
|
runs-on: ubuntu-latest
|
|
34
34
|
steps:
|
|
35
|
-
- uses: actions/checkout@
|
|
35
|
+
- uses: actions/checkout@v6
|
|
36
36
|
with:
|
|
37
37
|
ssh-key: ${{ secrets.PUSH_DEPLOY_KEY }}
|
|
38
38
|
fetch-depth: 0
|
|
@@ -92,7 +92,7 @@ jobs:
|
|
|
92
92
|
env:
|
|
93
93
|
HUSKY: 0
|
|
94
94
|
YARN_ENABLE_IMMUTABLE_INSTALLS: false
|
|
95
|
-
GH_TOKEN: {{ secrets.GITHUB_TOKEN }}
|
|
95
|
+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
96
96
|
<% if (enablePublish && packageManager === "yarn") { -%>
|
|
97
97
|
|
|
98
98
|
- name: Publish to npm
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
[install]
|
|
2
2
|
# Only install package versions published at least 3 days ago
|
|
3
3
|
minimumReleaseAge = 259200 # seconds - in #23162 it'll allow "3d" too
|
|
4
|
+
minimumReleaseAgeExcludes = ["@pob/root", "@pob/esbuild", "@pob/pretty-pkg", "@pob/rollup", "@pob/rollup-esbuild", "@pob/rollup-typescript", "@pob/sort-object", "@pob/sort-pkg", "@pob/version", "pob-dependencies", "pob-dependencies", "alouette", "alouette-icons", "nightingale", "nightingale-logger"]
|
|
@@ -9,7 +9,7 @@ jobs:
|
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
12
|
+
- uses: actions/checkout@v6
|
|
13
13
|
|
|
14
14
|
- name: Enable Corepack
|
|
15
15
|
run: corepack enable
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
runs-on: ubuntu-latest
|
|
40
40
|
|
|
41
41
|
steps:
|
|
42
|
-
- uses: actions/checkout@
|
|
42
|
+
- uses: actions/checkout@v6
|
|
43
43
|
|
|
44
44
|
- name: Enable Corepack
|
|
45
45
|
run: corepack enable
|
|
@@ -71,7 +71,7 @@ jobs:
|
|
|
71
71
|
runs-on: ubuntu-latest
|
|
72
72
|
|
|
73
73
|
steps:
|
|
74
|
-
- uses: actions/checkout@
|
|
74
|
+
- uses: actions/checkout@v6
|
|
75
75
|
|
|
76
76
|
- name: Enable Corepack
|
|
77
77
|
run: corepack enable
|
|
@@ -108,7 +108,7 @@ jobs:
|
|
|
108
108
|
node-version: [<% if (!onlyLatestLTS && nodeMaintenanceMajorVersion !== nodeLatestMajorVersion) { -%><%= nodeMaintenanceMajorVersion %>, <% } -%><%= nodeLatestMajorVersion %>]
|
|
109
109
|
|
|
110
110
|
steps:
|
|
111
|
-
- uses: actions/checkout@
|
|
111
|
+
- uses: actions/checkout@v6
|
|
112
112
|
|
|
113
113
|
<% if (packageManager === 'yarn') { -%>
|
|
114
114
|
- name: Enable Corepack
|
|
@@ -171,7 +171,7 @@ jobs:
|
|
|
171
171
|
node-version: [<%= nodeLatestMajorVersion %>]
|
|
172
172
|
|
|
173
173
|
steps:
|
|
174
|
-
- uses: actions/checkout@
|
|
174
|
+
- uses: actions/checkout@v6
|
|
175
175
|
|
|
176
176
|
- name: Enable Corepack
|
|
177
177
|
run: corepack enable
|
|
@@ -198,7 +198,7 @@ jobs:
|
|
|
198
198
|
needs: [<%= checks ? '"checks", ' : '' -%><%= build ? '"build", ' : '' -%>"lint"<%= testing ? ', "test"' : '' -%>]
|
|
199
199
|
|
|
200
200
|
steps:
|
|
201
|
-
- uses: actions/checkout@
|
|
201
|
+
- uses: actions/checkout@v6
|
|
202
202
|
|
|
203
203
|
- uses: actions/setup-node@v6
|
|
204
204
|
with:
|
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
node-version: [<% if (!onlyLatestLTS && nodeMaintenanceMajorVersion !== nodeLatestMajorVersion) { -%><%= nodeMaintenanceMajorVersion %>.x, <% } -%><%= nodeLatestMajorVersion %>.x]
|
|
13
13
|
|
|
14
14
|
steps:
|
|
15
|
-
- uses: actions/checkout@
|
|
15
|
+
- uses: actions/checkout@v6
|
|
16
16
|
|
|
17
17
|
<% if (packageManager === 'yarn') { -%>
|
|
18
18
|
- name: Enable Corepack
|
|
@@ -120,7 +120,7 @@ export default class CoreGitGithubGenerator extends Generator {
|
|
|
120
120
|
});
|
|
121
121
|
|
|
122
122
|
if (!GITHUB_TOKEN && process.env.CI !== "true") {
|
|
123
|
-
|
|
123
|
+
console.warn(
|
|
124
124
|
"Missing POB_GITHUB_TOKEN. Create one with https://github.com/settings/tokens/new?scopes=repo&description=POB%20Generator and add it in your env variables.",
|
|
125
125
|
);
|
|
126
126
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "31.0
|
|
3
|
+
"version": "31.1.0",
|
|
4
4
|
"description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"skeleton"
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"mem-fs-editor": "11.1.4",
|
|
65
65
|
"minimist": "1.2.8",
|
|
66
66
|
"parse-author": "2.0.0",
|
|
67
|
-
"pob-dependencies": "21.0.
|
|
67
|
+
"pob-dependencies": "21.0.2",
|
|
68
68
|
"prettier": "3.6.2",
|
|
69
69
|
"semver": "7.7.3",
|
|
70
70
|
"typescript": "5.9.3",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"yeoman-generator": "7.5.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@pob/root": "20.0
|
|
76
|
+
"@pob/root": "20.1.0",
|
|
77
77
|
"@types/node": "22.19.1"
|
|
78
78
|
}
|
|
79
79
|
}
|