From 50ecd8ce863e5996e47abb4fbad5f35e324ccc34 Mon Sep 17 00:00:00 2001 From: jank Date: Thu, 19 Jun 2025 17:06:44 +0200 Subject: [PATCH 01/12] chore: Clean up imports --- index.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.ts b/index.ts index 80e7876..60f2040 100644 --- a/index.ts +++ b/index.ts @@ -1,6 +1,6 @@ #!/usr/bin/env node -import fs, { readFileSync } from "fs"; +import fs from "fs"; import { confirm, select, input } from "@inquirer/prompts"; import { exit } from "process"; import { @@ -13,10 +13,8 @@ import { } from "./configuration/configuration"; import { execSync } from "child_process"; import { program } from "commander"; -import { dirname, join } from "path"; -import { fileURLToPath } from "bun"; -const packageJson = require("./package.json"); +import packageJson from "./package.json"; export const VERSION = packageJson.version; const CLI_NAME = "pcli"; From 703db757bc11edd233dca293528b0fad85365d5f Mon Sep 17 00:00:00 2001 From: jank Date: Thu, 19 Jun 2025 17:14:15 +0200 Subject: [PATCH 02/12] feat: Add folder execution --- index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 60f2040..72a1ffb 100644 --- a/index.ts +++ b/index.ts @@ -94,7 +94,12 @@ program choices: getProjects().map((project: Project) => project.name), }); - process.chdir(getConfiguration().projectsDirectory + "/" + pickedProject); + console.log( + "__EXEC__ cd " + + getConfiguration().projectsDirectory + + "/" + + pickedProject, + ); console.log(getProjects()); }); From de3f5e697c8170888180e606991d1aaa9c6c3738 Mon Sep 17 00:00:00 2001 From: jank Date: Thu, 19 Jun 2025 17:20:17 +0200 Subject: [PATCH 03/12] fix: fix init script --- index.ts | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/index.ts b/index.ts index 72a1ffb..a8204a8 100644 --- a/index.ts +++ b/index.ts @@ -106,22 +106,13 @@ program program.command("init").action(() => { console.log(`${CLI_NAME}() { - local output - output=$(command ${CLI_NAME} "$@") - local exit_code=$? - - if [ $exit_code -eq 0 ]; then - echo "$output" | while IFS= read -r line; do - if [[ $line == __EXEC__* ]]; then - eval "\${line#__EXEC__}" - else - echo "$line" - fi - done - else - echo "$output" >&2 - return $exit_code - fi + command ${CLI_NAME} "$@" | while IFS= read -r line; do + if [[ $line == __EXEC__* ]]; then + eval "\${line#__EXEC__}" + else + echo "$line" + fi + done }`); }); From b9bd05e4068be418975da981db32e69e97feb550 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 19 Jun 2025 15:25:17 +0000 Subject: [PATCH 04/12] chore(release): 0.4.0 [skip ci] ## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-19) ### Features * Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) * add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) ### Bug Fixes * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) ### Chores * Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) --- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff52f9d..b3be4bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-19) + +### Features + +* Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) +* add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) + +### Bug Fixes + +* fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) +* Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) + +### Chores + +* Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) + ## [0.3.3](https://git.kjan.de/jank/project-cli/compare/v0.3.2...v0.3.3) (2025-06-19) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index b681fda..c69d755 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "proj-cli", - "version": "0.3.3", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "proj-cli", - "version": "0.3.3", + "version": "0.4.0", "dependencies": { "@saithodev/semantic-release-gitea": "^2.1.0", "@semantic-release/changelog": "^6.0.3", diff --git a/package.json b/package.json index 9ffe94c..4c03195 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "proj-cli", - "version": "0.3.3", + "version": "0.4.0", "module": "index.ts", "type": "module", "bin": { From 7f5c72143a6b4265fe0f1ac841cf12f5105a62aa Mon Sep 17 00:00:00 2001 From: jank Date: Thu, 19 Jun 2025 19:21:00 +0200 Subject: [PATCH 05/12] fix: Fix cli command --- index.ts | 50 ++++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/index.ts b/index.ts index a8204a8..76a8414 100644 --- a/index.ts +++ b/index.ts @@ -105,14 +105,48 @@ program }); program.command("init").action(() => { - console.log(`${CLI_NAME}() { - command ${CLI_NAME} "$@" | while IFS= read -r line; do - if [[ $line == __EXEC__* ]]; then - eval "\${line#__EXEC__}" - else - echo "$line" - fi - done + console.log(`# Real-time output processing version +function pcli() { + local cli_command="$1" + shift + + # Use unbuffer to force line buffering, or stdbuf if available + if command -v unbuffer >/dev/null 2>&1; then + # unbuffer from expect package - best option + unbuffer "$cli_command" "$@" | while IFS= read -r line; do + if [[ "$line" =~ ^__EXEC__[[:space:]]*(.*) ]]; then + local cmd="\${match[1]}" + echo "Executing: $cmd" + eval "$cmd" + else + echo "$line" + fi + done + elif command -v stdbuf >/dev/null 2>&1; then + # stdbuf - force line buffering + stdbuf -oL "$cli_command" "$@" | while IFS= read -r line; do + if [[ "$line" =~ ^__EXEC__[[:space:]]*(.*) ]]; then + local cmd="\${match[1]}" + echo "Executing: $cmd" + eval "$cmd" + else + echo "$line" + fi + done + else + # Fallback using script to simulate a terminal + script -q /dev/null "$cli_command" "$@" | while IFS= read -r line; do + # Remove any terminal escape sequences that script might add + line=$(echo "$line" | sed 's/\\x1b\\[[0-9;]*m//g') + if [[ "$line" =~ ^__EXEC__[[:space:]]*(.*) ]]; then + local cmd="\${match[1]}" + echo "Executing: $cmd" + eval "$cmd" + else + echo "$line" + fi + done + fi }`); }); From 506fc040545f331ce369ae5d634f5e8247eec218 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 19 Jun 2025 17:22:33 +0000 Subject: [PATCH 06/12] chore(release): 0.4.0 [skip ci] ## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-19) ### Features * Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) * add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) ### Bug Fixes * Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) ### Chores * Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) * **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3be4bd..ca2df19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,24 @@ ### Bug Fixes +* Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) +* fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) +* Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) + +### Chores + +* Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) +* **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) + +## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-19) + +### Features + +* Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) +* add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) + +### Bug Fixes + * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) From ccf3d391dd969aeb4d181887c568d6b5ef4864bd Mon Sep 17 00:00:00 2001 From: jank Date: Fri, 20 Jun 2025 07:34:05 +0200 Subject: [PATCH 07/12] fix: Try different cli script --- index.ts | 50 ++++++++------------------------------------------ 1 file changed, 8 insertions(+), 42 deletions(-) diff --git a/index.ts b/index.ts index 76a8414..a8204a8 100644 --- a/index.ts +++ b/index.ts @@ -105,48 +105,14 @@ program }); program.command("init").action(() => { - console.log(`# Real-time output processing version -function pcli() { - local cli_command="$1" - shift - - # Use unbuffer to force line buffering, or stdbuf if available - if command -v unbuffer >/dev/null 2>&1; then - # unbuffer from expect package - best option - unbuffer "$cli_command" "$@" | while IFS= read -r line; do - if [[ "$line" =~ ^__EXEC__[[:space:]]*(.*) ]]; then - local cmd="\${match[1]}" - echo "Executing: $cmd" - eval "$cmd" - else - echo "$line" - fi - done - elif command -v stdbuf >/dev/null 2>&1; then - # stdbuf - force line buffering - stdbuf -oL "$cli_command" "$@" | while IFS= read -r line; do - if [[ "$line" =~ ^__EXEC__[[:space:]]*(.*) ]]; then - local cmd="\${match[1]}" - echo "Executing: $cmd" - eval "$cmd" - else - echo "$line" - fi - done - else - # Fallback using script to simulate a terminal - script -q /dev/null "$cli_command" "$@" | while IFS= read -r line; do - # Remove any terminal escape sequences that script might add - line=$(echo "$line" | sed 's/\\x1b\\[[0-9;]*m//g') - if [[ "$line" =~ ^__EXEC__[[:space:]]*(.*) ]]; then - local cmd="\${match[1]}" - echo "Executing: $cmd" - eval "$cmd" - else - echo "$line" - fi - done - fi + console.log(`${CLI_NAME}() { + command ${CLI_NAME} "$@" | while IFS= read -r line; do + if [[ $line == __EXEC__* ]]; then + eval "\${line#__EXEC__}" + else + echo "$line" + fi + done }`); }); From 16cb633fe16274131d5bb7ccbbc6626af6672901 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 20 Jun 2025 05:35:41 +0000 Subject: [PATCH 08/12] chore(release): 0.4.0 [skip ci] ## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-20) ### Features * Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) * add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) ### Bug Fixes * Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) * Try different cli script ([ccf3d39](https://git.kjan.de/jank/project-cli/commit/ccf3d391dd969aeb4d181887c568d6b5ef4864bd)) ### Chores * Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) * **release:** 0.4.0 [skip ci] ([506fc04](https://git.kjan.de/jank/project-cli/commit/506fc040545f331ce369ae5d634f5e8247eec218)) * **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) --- CHANGELOG.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca2df19..0e9a2a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-20) + +### Features + +* Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) +* add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) + +### Bug Fixes + +* Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) +* fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) +* Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) +* Try different cli script ([ccf3d39](https://git.kjan.de/jank/project-cli/commit/ccf3d391dd969aeb4d181887c568d6b5ef4864bd)) + +### Chores + +* Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) +* **release:** 0.4.0 [skip ci] ([506fc04](https://git.kjan.de/jank/project-cli/commit/506fc040545f331ce369ae5d634f5e8247eec218)) +* **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) + ## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-19) ### Features From 4cb16be7fa93f9a1507f070fb0b8eaee7cf6947a Mon Sep 17 00:00:00 2001 From: jank Date: Fri, 20 Jun 2025 07:37:18 +0200 Subject: [PATCH 09/12] fix: Remove stupid tag --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4c03195..9ffe94c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "proj-cli", - "version": "0.4.0", + "version": "0.3.3", "module": "index.ts", "type": "module", "bin": { From b6f77aed80069fb439cee2ec97a5b061119b9c49 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 20 Jun 2025 05:38:04 +0000 Subject: [PATCH 10/12] chore(release): 0.4.0 [skip ci] ## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-20) ### Features * Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) * add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) ### Bug Fixes * Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) * Remove stupid tag ([4cb16be](https://git.kjan.de/jank/project-cli/commit/4cb16be7fa93f9a1507f070fb0b8eaee7cf6947a)) * Try different cli script ([ccf3d39](https://git.kjan.de/jank/project-cli/commit/ccf3d391dd969aeb4d181887c568d6b5ef4864bd)) ### Chores * Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) * **release:** 0.4.0 [skip ci] ([16cb633](https://git.kjan.de/jank/project-cli/commit/16cb633fe16274131d5bb7ccbbc6626af6672901)) * **release:** 0.4.0 [skip ci] ([506fc04](https://git.kjan.de/jank/project-cli/commit/506fc040545f331ce369ae5d634f5e8247eec218)) * **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) --- CHANGELOG.md | 22 ++++++++++++++++++++++ package.json | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e9a2a0..f4c0cb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,28 @@ ### Bug Fixes +* Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) +* fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) +* Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) +* Remove stupid tag ([4cb16be](https://git.kjan.de/jank/project-cli/commit/4cb16be7fa93f9a1507f070fb0b8eaee7cf6947a)) +* Try different cli script ([ccf3d39](https://git.kjan.de/jank/project-cli/commit/ccf3d391dd969aeb4d181887c568d6b5ef4864bd)) + +### Chores + +* Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) +* **release:** 0.4.0 [skip ci] ([16cb633](https://git.kjan.de/jank/project-cli/commit/16cb633fe16274131d5bb7ccbbc6626af6672901)) +* **release:** 0.4.0 [skip ci] ([506fc04](https://git.kjan.de/jank/project-cli/commit/506fc040545f331ce369ae5d634f5e8247eec218)) +* **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) + +## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-20) + +### Features + +* Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) +* add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) + +### Bug Fixes + * Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) diff --git a/package.json b/package.json index 9ffe94c..4c03195 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "proj-cli", - "version": "0.3.3", + "version": "0.4.0", "module": "index.ts", "type": "module", "bin": { From 623ca27213c1902505eff61ec0b05993dc352dc2 Mon Sep 17 00:00:00 2001 From: jank Date: Fri, 20 Jun 2025 07:45:34 +0200 Subject: [PATCH 11/12] fix: test --- a | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 a diff --git a/a b/a new file mode 100644 index 0000000..e69de29 From 1efb9c522721364165ac14668d769c0e4ddfaef0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 20 Jun 2025 05:46:21 +0000 Subject: [PATCH 12/12] chore(release): 0.4.0 [skip ci] ## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-20) ### Features * Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) * add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) ### Bug Fixes * Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) * Remove stupid tag ([4cb16be](https://git.kjan.de/jank/project-cli/commit/4cb16be7fa93f9a1507f070fb0b8eaee7cf6947a)) * test ([623ca27](https://git.kjan.de/jank/project-cli/commit/623ca27213c1902505eff61ec0b05993dc352dc2)) * Try different cli script ([ccf3d39](https://git.kjan.de/jank/project-cli/commit/ccf3d391dd969aeb4d181887c568d6b5ef4864bd)) ### Chores * Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) * **release:** 0.4.0 [skip ci] ([b6f77ae](https://git.kjan.de/jank/project-cli/commit/b6f77aed80069fb439cee2ec97a5b061119b9c49)) * **release:** 0.4.0 [skip ci] ([16cb633](https://git.kjan.de/jank/project-cli/commit/16cb633fe16274131d5bb7ccbbc6626af6672901)) * **release:** 0.4.0 [skip ci] ([506fc04](https://git.kjan.de/jank/project-cli/commit/506fc040545f331ce369ae5d634f5e8247eec218)) * **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) --- CHANGELOG.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4c0cb1..25829e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,30 @@ ### Bug Fixes +* Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) +* fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) +* Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316)) +* Remove stupid tag ([4cb16be](https://git.kjan.de/jank/project-cli/commit/4cb16be7fa93f9a1507f070fb0b8eaee7cf6947a)) +* test ([623ca27](https://git.kjan.de/jank/project-cli/commit/623ca27213c1902505eff61ec0b05993dc352dc2)) +* Try different cli script ([ccf3d39](https://git.kjan.de/jank/project-cli/commit/ccf3d391dd969aeb4d181887c568d6b5ef4864bd)) + +### Chores + +* Clean up imports ([50ecd8c](https://git.kjan.de/jank/project-cli/commit/50ecd8ce863e5996e47abb4fbad5f35e324ccc34)) +* **release:** 0.4.0 [skip ci] ([b6f77ae](https://git.kjan.de/jank/project-cli/commit/b6f77aed80069fb439cee2ec97a5b061119b9c49)) +* **release:** 0.4.0 [skip ci] ([16cb633](https://git.kjan.de/jank/project-cli/commit/16cb633fe16274131d5bb7ccbbc6626af6672901)) +* **release:** 0.4.0 [skip ci] ([506fc04](https://git.kjan.de/jank/project-cli/commit/506fc040545f331ce369ae5d634f5e8247eec218)) +* **release:** 0.4.0 [skip ci] ([b9bd05e](https://git.kjan.de/jank/project-cli/commit/b9bd05e4068be418975da981db32e69e97feb550)) + +## [0.4.0](https://git.kjan.de/jank/project-cli/compare/v0.3.3...v0.4.0) (2025-06-20) + +### Features + +* Add folder execution ([703db75](https://git.kjan.de/jank/project-cli/commit/703db757bc11edd233dca293528b0fad85365d5f)) +* add version argument ([618e00b](https://git.kjan.de/jank/project-cli/commit/618e00b677b21dbb8a143a2cd8c189e3aa672c89)) + +### Bug Fixes + * Fix cli command ([7f5c721](https://git.kjan.de/jank/project-cli/commit/7f5c72143a6b4265fe0f1ac841cf12f5105a62aa)) * fix init script ([de3f5e6](https://git.kjan.de/jank/project-cli/commit/de3f5e697c8170888180e606991d1aaa9c6c3738)) * Merge ([3f6eab9](https://git.kjan.de/jank/project-cli/commit/3f6eab94c1b7b568228886f63e2529ad166bf316))