pob 26.0.0 → 26.1.1

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,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
+ ## [26.1.1](https://github.com/christophehurpeau/pob/compare/pob@26.1.0...pob@26.1.1) (2025-02-02)
7
+
8
+ Version bump for dependency: @pob/root
9
+
10
+
11
+ ## [26.1.0](https://github.com/christophehurpeau/pob/compare/pob@26.0.0...pob@26.1.0) (2025-02-02)
12
+
13
+ ### Features
14
+
15
+ * **deps:** update dependency semver to v7.7.0 ([#2430](https://github.com/christophehurpeau/pob/issues/2430)) ([0bb2964](https://github.com/christophehurpeau/pob/commit/0bb29647211a664eb61380bb0ec4e7cfee146f35))
16
+
17
+ ### Bug Fixes
18
+
19
+ * proper fix for version command ([601b94b](https://github.com/christophehurpeau/pob/commit/601b94b41d3d1d6a37685aa2b6e3dd4fc8176255))
20
+
21
+ Version bump for dependency: yarn-workspace-utils
22
+ Version bump for dependency: @pob/root
23
+
24
+
6
25
  ## 26.0.0 (2025-02-01)
7
26
 
8
27
  ### ⚠ BREAKING CHANGES
@@ -7,6 +7,11 @@ on:
7
7
  required: true
8
8
  type: boolean
9
9
  default: false
10
+ allow-no-tags:
11
+ description: "Allow no tags"
12
+ required: false
13
+ type: boolean
14
+ default: false
10
15
  <% if (enableYarnVersion && isMonorepo && isMonorepoIndependent) { -%>
11
16
  bump-dependents-highest-as:
12
17
  description: "Bump dependents highest as"
@@ -26,13 +31,22 @@ jobs:
26
31
  - uses: actions/checkout@v4
27
32
  with:
28
33
  token: ${{ secrets.GH_TOKEN }}
29
- fetch-depth: 200
34
+ fetch-depth: 0
30
35
  fetch-tags: true
31
36
 
32
37
  - uses: actions/setup-node@v4
33
38
  with:
34
39
  node-version: 22
35
40
 
41
+ - name: Check git tags
42
+ if: github.ref == 'refs/heads/main' && !inputs.allow-no-tags
43
+ run: |
44
+ tags=$(git tag)
45
+ if [ -z "$tags" ]; then
46
+ echo "No git tags found"
47
+ exit 1
48
+ fi
49
+
36
50
  <% if (packageManager === 'yarn') { -%>
37
51
  - name: Enable Corepack
38
52
  run: corepack enable
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pob",
3
- "version": "26.0.0",
3
+ "version": "26.1.1",
4
4
  "description": "Pile of bones, library generator with git/babel/typescript/typedoc/readme/jest",
5
5
  "keywords": [
6
6
  "skeleton"
@@ -65,17 +65,17 @@
65
65
  "mem-fs-editor": "11.1.4",
66
66
  "minimist": "1.2.8",
67
67
  "parse-author": "2.0.0",
68
- "pob-dependencies": "17.0.0",
68
+ "pob-dependencies": "17.1.0",
69
69
  "prettier": "3.4.2",
70
- "semver": "7.6.3",
70
+ "semver": "7.7.0",
71
71
  "typescript": "5.7.3",
72
72
  "validate-npm-package-name": "^6.0.0",
73
- "yarn-workspace-utils": "8.0.0",
73
+ "yarn-workspace-utils": "8.1.0",
74
74
  "yeoman-environment": "4.4.3",
75
75
  "yeoman-generator": "7.4.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@pob/root": "16.0.0",
78
+ "@pob/root": "16.1.1",
79
79
  "@types/node": "22.13.0"
80
80
  }
81
81
  }