pob 29.5.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 CHANGED
@@ -3,6 +3,18 @@
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
+
6
18
  ## [29.5.0](https://github.com/christophehurpeau/pob/compare/pob@29.4.0...pob@29.5.0) (2025-10-27)
7
19
 
8
20
  Version bump for dependency: yarn-workspace-utils
@@ -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"))) {
@@ -3,6 +3,9 @@ CHANGELOG.md
3
3
  <% if (documentation) { -%>
4
4
  /docs
5
5
  <% } -%>
6
+ <% if (storybook) { -%>
7
+ storybook.requires.ts
8
+ <% } -%>
6
9
  <% if (packageManager === 'yarn' && inRoot) { -%>
7
10
  /.yarn/**/*
8
11
  <% if (yarnNodeLinker === 'pnp') { -%>
@@ -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
  }
@@ -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.9.3")
145
+ lt(pkg.packageManager.slice("yarn@".length), "4.10.3")
146
146
  ) {
147
- pkg.packageManager = "yarn@4.9.3";
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.5.0",
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,7 +67,7 @@
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.1",
70
+ "pob-dependencies": "20.4.2",
71
71
  "prettier": "3.6.2",
72
72
  "semver": "7.7.3",
73
73
  "typescript": "5.9.3",
@@ -77,7 +77,7 @@
77
77
  "yeoman-generator": "7.5.1"
78
78
  },
79
79
  "devDependencies": {
80
- "@pob/root": "19.5.0",
81
- "@types/node": "22.18.12"
80
+ "@pob/root": "19.6.0",
81
+ "@types/node": "22.18.13"
82
82
  }
83
83
  }