pob 29.2.0 → 29.3.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,21 @@
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.3.0](https://github.com/christophehurpeau/pob/compare/pob@29.2.0...pob@29.3.0) (2025-10-12)
7
+
8
+ ### Features
9
+
10
+ * **deps:** update dependency eslint to v9.37.0 ([#2585](https://github.com/christophehurpeau/pob/issues/2585)) ([46eb44a](https://github.com/christophehurpeau/pob/commit/46eb44a56a89df5fcca0d40c3738e38ceb07c038))
11
+ * **deps:** update yarn monorepo ([#2583](https://github.com/christophehurpeau/pob/issues/2583)) ([2775830](https://github.com/christophehurpeau/pob/commit/2775830b30a964577f05457e8ffd2810265abd9f))
12
+
13
+ ### Bug Fixes
14
+
15
+ * properly remove test:coverage:lcov script ([5d14307](https://github.com/christophehurpeau/pob/commit/5d143070d46c76e5b9313fd46e11213a6c1201de))
16
+
17
+ Version bump for dependency: yarn-workspace-utils
18
+ Version bump for dependency: @pob/root
19
+
20
+
6
21
  ## [29.2.0](https://github.com/christophehurpeau/pob/compare/pob@29.1.0...pob@29.2.0) (2025-09-17)
7
22
 
8
23
  ### Features
@@ -8,6 +8,7 @@ export default class CommonRemoveOldDependenciesGenerator extends Generator {
8
8
  // old pob dependencies
9
9
  packageUtils.removeDependencies(pkg, ["flow-runtime"]);
10
10
  packageUtils.removeDevDependencies(pkg, [
11
+ "ts-node",
11
12
  "tcomb",
12
13
  "tcomb-forked",
13
14
  "flow-runtime",
@@ -38,6 +38,7 @@ jobs:
38
38
  - name: Enable Corepack
39
39
  run: corepack enable
40
40
  <% } -%>
41
+
41
42
  - uses: actions/setup-node@v5
42
43
  with:
43
44
  node-version: <%= nodeLatestMajorVersion %>
@@ -51,7 +52,6 @@ jobs:
51
52
  echo "No git tags found"
52
53
  exit 1
53
54
  fi
54
-
55
55
  <% if (packageManager === 'yarn') { -%>
56
56
 
57
57
  - name: Install Dependencies
@@ -407,7 +407,7 @@ export default class CommonTestingGenerator extends Generator {
407
407
  if (this.options.monorepo) {
408
408
  const shouldUseExperimentalVmModules = pkg.type === "module";
409
409
 
410
- packageUtils.removeScripts(["test:coverage:lcov"]);
410
+ packageUtils.removeScripts(pkg, ["test:coverage:lcov"]);
411
411
  packageUtils.addScripts(pkg, {
412
412
  test: createTestCommand({
413
413
  workspacesPattern,
@@ -504,7 +504,7 @@ export default class CommonTestingGenerator extends Generator {
504
504
  const shouldUseExperimentalVmModules =
505
505
  pkg.type === "module" && !inMonorepo;
506
506
 
507
- packageUtils.removeScripts(["test:coverage:lcov"]);
507
+ packageUtils.removeScripts(pkg, ["test:coverage:lcov"]);
508
508
  packageUtils.addScripts(pkg, {
509
509
  test: createTestCommand({ shouldUseExperimentalVmModules }),
510
510
  "test:watch": createTestCommand({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "29.2.0",
3
+ "version": "29.3.0",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -50,11 +50,11 @@
50
50
  "@pob/sort-pkg": "12.1.0",
51
51
  "@prettier/sync": "0.6.1",
52
52
  "@types/inquirer": "9.0.9",
53
- "@yarnpkg/cli": "4.9.4",
54
- "@yarnpkg/core": "4.4.3",
55
- "@yarnpkg/fslib": "3.1.2",
53
+ "@yarnpkg/cli": "4.10.3",
54
+ "@yarnpkg/core": "4.4.4",
55
+ "@yarnpkg/fslib": "3.1.3",
56
56
  "@yeoman/types": "1.7.1",
57
- "eslint": "9.35.0",
57
+ "eslint": "9.37.0",
58
58
  "findup-sync": "^5.0.0",
59
59
  "git-remote-url": "^1.0.1",
60
60
  "github-username": "^9.0.0",
@@ -66,17 +66,17 @@
66
66
  "mem-fs-editor": "11.1.4",
67
67
  "minimist": "1.2.8",
68
68
  "parse-author": "2.0.0",
69
- "pob-dependencies": "20.2.0",
69
+ "pob-dependencies": "20.3.0",
70
70
  "prettier": "3.6.2",
71
71
  "semver": "7.7.2",
72
72
  "typescript": "5.9.2",
73
73
  "validate-npm-package-name": "^6.0.2",
74
- "yarn-workspace-utils": "9.2.0",
74
+ "yarn-workspace-utils": "9.3.0",
75
75
  "yeoman-environment": "4.4.3",
76
76
  "yeoman-generator": "7.5.1"
77
77
  },
78
78
  "devDependencies": {
79
- "@pob/root": "19.2.0",
80
- "@types/node": "22.18.5"
79
+ "@pob/root": "19.3.0",
80
+ "@types/node": "22.18.10"
81
81
  }
82
82
  }