boilerforge 1.1.2 → 1.1.3
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.
|
@@ -4,7 +4,7 @@ on:
|
|
|
4
4
|
workflow_dispatch:
|
|
5
5
|
inputs:
|
|
6
6
|
release-type:
|
|
7
|
-
description: "Release type
|
|
7
|
+
description: "Release type"
|
|
8
8
|
type: choice
|
|
9
9
|
options:
|
|
10
10
|
- rc
|
|
@@ -14,6 +14,10 @@ on:
|
|
|
14
14
|
branches:
|
|
15
15
|
- main
|
|
16
16
|
|
|
17
|
+
concurrency:
|
|
18
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
19
|
+
cancel-in-progress: true
|
|
20
|
+
|
|
17
21
|
jobs:
|
|
18
22
|
setup-release:
|
|
19
23
|
runs-on: ubuntu-latest
|
|
@@ -32,7 +36,7 @@ jobs:
|
|
|
32
36
|
if [ -n "$release_type_input" ]; then
|
|
33
37
|
type="$release_type_input"
|
|
34
38
|
else
|
|
35
|
-
echo "No manual input found. Proceeding to
|
|
39
|
+
echo "No manual input found. Proceeding to parse commit message..."
|
|
36
40
|
|
|
37
41
|
COMMIT_MSG=$(git log --format=%s -n 1)
|
|
38
42
|
echo "Last Commit Message: $COMMIT_MSG"
|
|
@@ -41,7 +45,7 @@ jobs:
|
|
|
41
45
|
|
|
42
46
|
if [ -n "$parsed_release_type" ]; then
|
|
43
47
|
echo "Pattern matched! Parsed type: $parsed_release_type"
|
|
44
|
-
type
|
|
48
|
+
type=$([ "$parsed_release_type" = "prod" ] && echo "latest" || echo "$release_type")
|
|
45
49
|
else
|
|
46
50
|
echo "WARN: No release type provided via input AND commit message does not match 'release(type):'"
|
|
47
51
|
fi
|
|
@@ -66,7 +70,7 @@ jobs:
|
|
|
66
70
|
"uses": "tspyder7/github-actions-lib/actions/npm-publish@main",
|
|
67
71
|
"with": {
|
|
68
72
|
"package-manager": "pnpm",
|
|
69
|
-
"node-version": "
|
|
73
|
+
"node-version": "24",
|
|
70
74
|
"registry-url": "https://registry.npmjs.org/",
|
|
71
75
|
"publish-tag": "${{ needs.setup-release.outputs.release-type }}"
|
|
72
76
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.3](https://github.com/tspyder7/boilerforge/compare/boilerforge-v1.1.2...boilerforge-v1.1.3) (2026-05-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ci:** cancelled in progress release-pipeline workflows ([#83](https://github.com/tspyder7/boilerforge/issues/83)) ([210daae](https://github.com/tspyder7/boilerforge/commit/210daae626de6758a01c57d8b45adca6f52c670f))
|
|
9
|
+
* **ci:** fixed typo in workflow ([#82](https://github.com/tspyder7/boilerforge/issues/82)) ([8ea21cb](https://github.com/tspyder7/boilerforge/commit/8ea21cbae37b4ee17f08e100d59edd7ce4913754))
|
|
10
|
+
* **ci:** updated release-pipeline to use node 24 & fixed release configuration prod -> latest ([#81](https://github.com/tspyder7/boilerforge/issues/81)) ([a36e469](https://github.com/tspyder7/boilerforge/commit/a36e469390d8187414474b0a7754b67209865842))
|
|
11
|
+
|
|
3
12
|
## [1.1.2](https://github.com/tspyder7/boilerforge/compare/boilerforge-v1.1.1...boilerforge-v1.1.2) (2026-05-04)
|
|
4
13
|
|
|
5
14
|
|
package/dist/cli.js
CHANGED
|
@@ -10332,7 +10332,7 @@ var {
|
|
|
10332
10332
|
} = import_index.default;
|
|
10333
10333
|
|
|
10334
10334
|
// src/config/cli-config.ts
|
|
10335
|
-
var runtimeVersion = true ? "1.1.
|
|
10335
|
+
var runtimeVersion = true ? "1.1.3" : "0.0.0-dev";
|
|
10336
10336
|
var cliConfig = {
|
|
10337
10337
|
name: "boilerforge",
|
|
10338
10338
|
description: "boilerforge is a blazing-fast CLI utility that scaffolds clean, ready-to-use project structures so you can skip the setup and start building instantly.",
|
package/package.json
CHANGED
|
File without changes
|