boilerforge 1.0.2 → 1.1.2

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.
@@ -0,0 +1,75 @@
1
+ name: release-pipeline
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ release-type:
7
+ description: "Release type (rc, alpha, beta, latest)"
8
+ type: choice
9
+ options:
10
+ - rc
11
+ - latest
12
+ default: latest
13
+ push:
14
+ branches:
15
+ - main
16
+
17
+ jobs:
18
+ setup-release:
19
+ runs-on: ubuntu-latest
20
+ outputs:
21
+ release-type: ${{ steps.determine.outputs.release-type }}
22
+ steps:
23
+ - name: Checkout Code
24
+ uses: actions/checkout@v5
25
+ with:
26
+ fetch-depth: 0 # Ensures history is available for git log
27
+
28
+ - id: determine
29
+ run: |
30
+ release_type_input="${{ github.event.inputs.release-type }}"
31
+
32
+ if [ -n "$release_type_input" ]; then
33
+ type="$release_type_input"
34
+ else
35
+ echo "No manual input found. Proceeding to Priority 2: Parsing commit message..."
36
+
37
+ COMMIT_MSG=$(git log --format=%s -n 1)
38
+ echo "Last Commit Message: $COMMIT_MSG"
39
+
40
+ parsed_release_type=$(echo "$COMMIT_MSG" | sed -n 's/^release(\(.*\)):.*$/\1/p')
41
+
42
+ if [ -n "$parsed_release_type" ]; then
43
+ echo "Pattern matched! Parsed type: $parsed_release_type"
44
+ type="$parsed_release_type"
45
+ else
46
+ echo "WARN: No release type provided via input AND commit message does not match 'release(type):'"
47
+ fi
48
+ fi
49
+
50
+ echo "release-type=$type" >> $GITHUB_OUTPUT
51
+ echo "Successfully resolved release-type to: $type"
52
+
53
+ release:
54
+ needs: setup-release
55
+ permissions:
56
+ id-token: write
57
+ contents: write
58
+ pull-requests: write
59
+ actions: write
60
+ uses: tspyder7/github-actions-lib/.github/workflows/release-pipeline.yml@main
61
+ with:
62
+ environment: production
63
+ release-type: ${{ needs.setup-release.outputs.release-type }}
64
+ publish: |
65
+ {
66
+ "uses": "tspyder7/github-actions-lib/actions/npm-publish@main",
67
+ "with": {
68
+ "package-manager": "pnpm",
69
+ "node-version": "22",
70
+ "registry-url": "https://registry.npmjs.org/",
71
+ "publish-tag": "${{ needs.setup-release.outputs.release-type }}"
72
+ }
73
+ }
74
+ secrets:
75
+ GH_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
package/.husky/pre-push CHANGED
File without changes
@@ -0,0 +1,16 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
+ "packages": {
4
+ ".": {
5
+ "package-name": "boilerforge",
6
+ "release-type": "node",
7
+ "changelog-path": "CHANGELOG.md"
8
+ }
9
+ },
10
+ "include-v-in-tag": true,
11
+ "bump-minor-pre-major": false,
12
+ "pull-request-title-pattern": "release(prod): v${version}",
13
+ "pull-request-header": "Release Notes",
14
+ "separate-pull-requests": true,
15
+ "bump-patch-for-minor-pre-major": true
16
+ }
@@ -0,0 +1,3 @@
1
+ {
2
+ ".": "1.1.2"
3
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
+ "packages": {
4
+ ".": {
5
+ "package-name": "boilerforge",
6
+ "release-type": "node",
7
+ "changelog-path": "CHANGELOG.md",
8
+ "prerelease-type": "rc",
9
+ "prerelease": true
10
+ }
11
+ },
12
+ "include-v-in-tag": true,
13
+ "bump-minor-pre-major": false,
14
+ "pull-request-title-pattern": "release(rc): v${version}",
15
+ "pull-request-header": "Release Notes",
16
+ "separate-pull-requests": true,
17
+ "bump-patch-for-minor-pre-major": true,
18
+ "versioning": "prerelease"
19
+ }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.1.2](https://github.com/tspyder7/boilerforge/compare/boilerforge-v1.1.1...boilerforge-v1.1.2) (2026-05-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * updated node engine >= 24 and added keyword, repository configuation ([#79](https://github.com/tspyder7/boilerforge/issues/79)) ([8022e7a](https://github.com/tspyder7/boilerforge/commit/8022e7afb5cd7685c7650816a181d4131b0f8d8d))
9
+
10
+ ## [1.1.1](https://github.com/tspyder7/boilerforge/compare/boilerforge-v1.1.0...boilerforge-v1.1.1) (2026-04-26)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **ci:** added setup-release job ([#76](https://github.com/tspyder7/boilerforge/issues/76)) ([08afa65](https://github.com/tspyder7/boilerforge/commit/08afa65ed19d705ec684d3bcbd4c3bc2e41afbba))
16
+ * **ci:** giving warning message when there is no release-type ([#77](https://github.com/tspyder7/boilerforge/issues/77)) ([d821871](https://github.com/tspyder7/boilerforge/commit/d821871eb63b1ebcaf6d8a2ff5a042e6e725bfe6))
17
+
18
+ ## [1.1.0](https://github.com/tspyder7/boilerforge/compare/boilerforge-v1.0.2...boilerforge-v1.1.0) (2026-04-26)
19
+
20
+
21
+ ### Features
22
+
23
+ * updated readme description ([#74](https://github.com/tspyder7/boilerforge/issues/74)) ([4c44e35](https://github.com/tspyder7/boilerforge/commit/4c44e357eceada7e4a82326e4fd5a88757cf87ed))
24
+
3
25
  ## [1.0.2](https://github.com/tspyder7/boilerforge/compare/boilerforge-v1.0.1...boilerforge-v1.0.2) (2025-08-19)
4
26
 
5
27
 
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # boilerforge
2
2
 
3
- 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.
3
+ A blazing-fast CLI utility that scaffolds clean, ready-to-use project structures so you can skip the setup and start building instantly.
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.0.2" : "0.0.0-dev";
10335
+ var runtimeVersion = true ? "1.1.2" : "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
@@ -1,55 +1,66 @@
1
1
  {
2
- "name": "boilerforge",
3
- "version": "1.0.2",
4
- "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.",
5
- "main": "dist/",
6
- "bin": {
7
- "boilerforge": "dist/cli.js"
8
- },
9
- "engines": {
10
- "node": ">= 20.11.1"
11
- },
12
- "keywords": [],
13
- "author": "tspyder7",
14
- "license": "MIT",
15
- "devDependencies": {
16
- "@commitlint/cli": "^19.8.1",
17
- "@commitlint/config-conventional": "^19.8.1",
18
- "@eslint/js": "^9.25.1",
19
- "@types/node": "^22.15.2",
20
- "@typescript-eslint/eslint-plugin": "^8.31.0",
21
- "@typescript-eslint/parser": "^8.31.0",
22
- "esbuild": "^0.25.3",
23
- "eslint": "^9.25.1",
24
- "globals": "^16.0.0",
25
- "husky": "^9.1.7",
26
- "prettier": "^3.5.3",
27
- "rimraf": "^6.0.1",
28
- "ts-node": "^10.9.2",
29
- "tslint-config-prettier": "^1.18.0",
30
- "typescript": "^5.8.3",
31
- "typescript-eslint": "^8.31.0"
32
- },
33
- "dependencies": {
34
- "chalk": "^5.4.1",
35
- "commander": "^13.1.0",
36
- "enquirer": "^2.4.1",
37
- "execa": "^9.5.2",
38
- "inquirer": "^12.6.1",
39
- "listr2": "^8.3.2",
40
- "remark-stringify": "^11.0.0",
41
- "unified": "^11.0.5",
42
- "unist-builder": "^4.0.0"
43
- },
44
- "scripts": {
45
- "clean": "rimraf dist",
46
- "ci": "pnpm install --frozen-lockfile",
47
- "build": "ts-node esbuild.config.ts",
48
- "prebuild": "pnpm run clean && pnpm run lint && pnpm run format",
49
- "start": "node dist/cli.js",
50
- "lint": "eslint --ext .js,.ts .",
51
- "format": "prettier --write \"**/*.+(js|ts)\"",
52
- "test": "echo \"Error: no test specified\" && exit 1",
53
- "dev": "ts-node bin/cli.ts"
54
- }
55
- }
2
+ "name": "boilerforge",
3
+ "version": "1.1.2",
4
+ "description": "A blazing-fast CLI utility that scaffolds clean, ready-to-use project structures so you can skip the setup and start building instantly.",
5
+ "main": "dist/",
6
+ "bin": {
7
+ "boilerforge": "dist/cli.js"
8
+ },
9
+ "engines": {
10
+ "node": ">= 24"
11
+ },
12
+ "scripts": {
13
+ "clean": "rimraf dist",
14
+ "ci": "pnpm install --frozen-lockfile",
15
+ "build": "ts-node esbuild.config.ts",
16
+ "prebuild": "pnpm run clean && pnpm run lint && pnpm run format",
17
+ "start": "node dist/cli.js",
18
+ "lint": "eslint --ext .js,.ts .",
19
+ "format": "prettier --write \"**/*.+(js|ts)\"",
20
+ "test": "echo \"Error: no test specified\" && exit 1",
21
+ "dev": "ts-node bin/cli.ts",
22
+ "prepare": "husky"
23
+ },
24
+ "keywords": [
25
+ "cli",
26
+ "boilerplate",
27
+ "scaffolding-tool",
28
+ "automation"
29
+ ],
30
+ "repository": {
31
+ "type": "git",
32
+ "url": "https://github.com/tspyder7/boilerforge.git"
33
+ },
34
+ "author": "tspyder7",
35
+ "license": "MIT",
36
+ "packageManager": "pnpm@10.9.0",
37
+ "devDependencies": {
38
+ "@commitlint/cli": "^19.8.1",
39
+ "@commitlint/config-conventional": "^19.8.1",
40
+ "@eslint/js": "^9.25.1",
41
+ "@types/node": "^22.15.2",
42
+ "@typescript-eslint/eslint-plugin": "^8.31.0",
43
+ "@typescript-eslint/parser": "^8.31.0",
44
+ "esbuild": "^0.25.3",
45
+ "eslint": "^9.25.1",
46
+ "globals": "^16.0.0",
47
+ "husky": "^9.1.7",
48
+ "prettier": "^3.5.3",
49
+ "rimraf": "^6.0.1",
50
+ "ts-node": "^10.9.2",
51
+ "tslint-config-prettier": "^1.18.0",
52
+ "typescript": "^5.8.3",
53
+ "typescript-eslint": "^8.31.0"
54
+ },
55
+ "dependencies": {
56
+ "chalk": "^5.4.1",
57
+ "commander": "^13.1.0",
58
+ "enquirer": "^2.4.1",
59
+ "execa": "^9.5.2",
60
+ "inquirer": "^12.6.1",
61
+ "listr2": "^8.3.2",
62
+ "remark-stringify": "^11.0.0",
63
+ "unified": "^11.0.5",
64
+ "unist-builder": "^4.0.0"
65
+ }
66
+ }
@@ -1,25 +0,0 @@
1
- name: Generate Auto PR
2
-
3
- on:
4
- workflow_dispatch:
5
- push:
6
- branches:
7
- - development
8
-
9
- jobs:
10
- automatic-pr-generate:
11
- name: Use Generate Auto PR Workflow
12
- permissions:
13
- contents: write
14
- pull-requests: write
15
-
16
- uses: tspyder7/github-actions-lib/.github/workflows/auto-pr.yml@main
17
- with:
18
- pr-branch-hierarchy-json: |
19
- {
20
- "main": [
21
- "development"
22
- ]
23
- }
24
- secrets:
25
- GH_TOKEN: ${{ secrets.GH_REPO_TOKEN }}
@@ -1,28 +0,0 @@
1
- name: Enforce PR Rules
2
-
3
- on:
4
- pull_request:
5
- types:
6
- - opened
7
- - reopened
8
- - synchronize
9
- - edited
10
-
11
- jobs:
12
- enforce-pr-hierarchy:
13
- name: Use Enforce PR Hierarchy Workflow
14
- permissions:
15
- contents: write
16
- pull-requests: write
17
- uses: tspyder7/github-actions-lib/.github/workflows/enforce-pr-hierarchy.yml@main
18
- with:
19
- allowed-branches-hierarchy-json: |
20
- {
21
- "main": [
22
- "development",
23
- "release-please-.*",
24
- "hotfix/.*"
25
- ]
26
- }
27
- secrets:
28
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -1,17 +0,0 @@
1
- name: Release NPM Package
2
-
3
- on:
4
- push:
5
- tags:
6
- - '*'
7
-
8
- jobs:
9
- publish-package:
10
- name: Use NPM Publish Workflow
11
- uses: tspyder7/github-actions-lib/.github/workflows/npm-publish.yml@main
12
- with:
13
- node-version: "22"
14
- registry-url: "https://registry.npmjs.org/"
15
- package-manager: "pnpm"
16
- secrets:
17
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,28 +0,0 @@
1
- name: Release Changelog
2
-
3
- on:
4
- workflow_dispatch:
5
- push:
6
- branches:
7
- - main
8
-
9
- jobs:
10
- release-changelog:
11
- name: Use Release Please Workflow
12
- permissions:
13
- contents: write
14
- pull-requests: write
15
-
16
- runs-on: ubuntu-latest
17
- timeout-minutes: 10
18
- steps:
19
- - name: Checkout Code
20
- uses: actions/checkout@v4
21
-
22
- - name: Generate ChangeLog
23
- id: release-changelog
24
- uses: googleapis/release-please-action@v4
25
- with:
26
- token: ${{ secrets.GH_REPO_TOKEN }}
27
- config-file: release-please-config.json
28
- manifest-file: .release-please-manifest.json
@@ -1,15 +0,0 @@
1
- {
2
- "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3
- "release-type": "node",
4
- "packages": {
5
- ".": {
6
- "package-name": "boilerforge",
7
- "changelog-path": "CHANGELOG.md"
8
- }
9
- },
10
- "bump-minor-pre-major": true,
11
- "include-v-in-tag": true,
12
- "pull-request-title-pattern": "chore: release v${version}",
13
- "pull-request-header": "Release Notes",
14
- "separate-pull-requests": true
15
- }