pob 29.4.0 → 29.6.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 +18 -0
- package/lib/generators/app/ignorePaths.js +2 -1
- package/lib/generators/common/format-lint/CommonLintGenerator.js +1 -0
- package/lib/generators/common/format-lint/templates/prettierignore.ejs +3 -0
- package/lib/generators/common/release/templates/workflow-release.yml.ejs +1 -1
- package/lib/generators/common/typescript/CommonTypescriptGenerator.js +4 -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/yarn/CoreYarnGenerator.js +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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.6.0](https://github.com/christophehurpeau/pob/compare/pob@29.5.0...pob@29.6.0) (2025-11-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* add storybook.requires.ts in prettierignore
|
|
11
|
+
* add tamagui-web.css and replace web-build by dist
|
|
12
|
+
* expo tsconfig
|
|
13
|
+
* update packageManager
|
|
14
|
+
|
|
15
|
+
Version bump for dependency: @pob/root
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
## [29.5.0](https://github.com/christophehurpeau/pob/compare/pob@29.4.0...pob@29.5.0) (2025-10-27)
|
|
19
|
+
|
|
20
|
+
Version bump for dependency: yarn-workspace-utils
|
|
21
|
+
Version bump for dependency: @pob/root
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [29.4.0](https://github.com/christophehurpeau/pob/compare/pob@29.3.1...pob@29.4.0) (2025-10-26)
|
|
7
25
|
|
|
8
26
|
### Features
|
|
@@ -20,13 +20,14 @@ export const appIgnorePaths = {
|
|
|
20
20
|
storybook: (config) => [],
|
|
21
21
|
expo: (config) => [
|
|
22
22
|
"/.expo/",
|
|
23
|
+
"/src/tamagui-web.css",
|
|
24
|
+
"/dist/",
|
|
23
25
|
"*.jks",
|
|
24
26
|
"*.p8",
|
|
25
27
|
"*.p12",
|
|
26
28
|
"*.key",
|
|
27
29
|
"*.mobileprovision",
|
|
28
30
|
"*.orig.*",
|
|
29
|
-
"/web-build/",
|
|
30
31
|
|
|
31
32
|
// only if option is enabled which is not by default
|
|
32
33
|
// '# Temporary files created by Metro to check the health of the file watcher',
|
|
@@ -203,6 +203,7 @@ export default class CommonLintGenerator extends Generator {
|
|
|
203
203
|
hasApp: this.options.hasApp,
|
|
204
204
|
rootIgnorePatterns: [...rootIgnorePatterns],
|
|
205
205
|
ignorePatterns: [...ignorePatterns],
|
|
206
|
+
storybook: !!pkg.devDependencies?.storybook,
|
|
206
207
|
},
|
|
207
208
|
);
|
|
208
209
|
} else if (this.fs.exists(this.destinationPath(".prettierignore"))) {
|
|
@@ -171,6 +171,10 @@ export default class CommonTypescriptGenerator extends Generator {
|
|
|
171
171
|
return ["@pob/root/tsconfigs/targets/rollup-es2015.json"];
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
+
if (this.options.isApp && pkg.devDependencies?.expo) {
|
|
175
|
+
return ["@pob/root/tsconfigs/targets/expo.json"];
|
|
176
|
+
}
|
|
177
|
+
|
|
174
178
|
if (this.options.dom) {
|
|
175
179
|
return ["@pob/root/tsconfigs/targets/webpack.json"];
|
|
176
180
|
}
|
|
@@ -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
|
|
@@ -142,9 +142,9 @@ export default class CoreYarnGenerator extends Generator {
|
|
|
142
142
|
if (
|
|
143
143
|
!pkg.packageManager ||
|
|
144
144
|
!pkg.packageManager.startsWith("yarn@") ||
|
|
145
|
-
lt(pkg.packageManager.slice("yarn@".length), "4.
|
|
145
|
+
lt(pkg.packageManager.slice("yarn@".length), "4.10.3")
|
|
146
146
|
) {
|
|
147
|
-
pkg.packageManager = "yarn@4.
|
|
147
|
+
pkg.packageManager = "yarn@4.10.3";
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
// must be done after plugins installed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pob",
|
|
3
|
-
"version": "29.
|
|
3
|
+
"version": "29.6.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.2",
|
|
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.
|
|
81
|
-
"@types/node": "22.18.
|
|
80
|
+
"@pob/root": "19.6.0",
|
|
81
|
+
"@types/node": "22.18.13"
|
|
82
82
|
}
|
|
83
83
|
}
|