From 58ff2170ab1c600f083dd31500164c75a0ebc843 Mon Sep 17 00:00:00 2001 From: yutakobaayshidev Date: Fri, 15 Mar 2024 04:17:03 +0900 Subject: [PATCH 1/4] fix: initial commit message --- .changeset/twelve-cats-turn.md | 5 +++++ src/helpers/git.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/twelve-cats-turn.md diff --git a/.changeset/twelve-cats-turn.md b/.changeset/twelve-cats-turn.md new file mode 100644 index 0000000..f18e651 --- /dev/null +++ b/.changeset/twelve-cats-turn.md @@ -0,0 +1,5 @@ +--- +"@hanabi.rest/cli": patch +--- + +fix: fix: initial commit message diff --git a/src/helpers/git.ts b/src/helpers/git.ts index 8a05c83..6ba952e 100644 --- a/src/helpers/git.ts +++ b/src/helpers/git.ts @@ -42,7 +42,7 @@ export function tryGitInit(root: string): boolean { } execSync("git add -A", { stdio: "ignore" }); - execSync('git commit -m "Initial commit from Create Next App"', { + execSync('git commit -m "Initial commit from Hanabi.rest"', { stdio: "ignore", }); return true; From 58289bfd7395e0b612b2ac0c5ac5440d53f442de Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 14 Mar 2024 19:17:55 +0000 Subject: [PATCH 2/4] Version Packages --- .changeset/twelve-cats-turn.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/twelve-cats-turn.md diff --git a/.changeset/twelve-cats-turn.md b/.changeset/twelve-cats-turn.md deleted file mode 100644 index f18e651..0000000 --- a/.changeset/twelve-cats-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hanabi.rest/cli": patch ---- - -fix: fix: initial commit message diff --git a/CHANGELOG.md b/CHANGELOG.md index e0f0007..02a29d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @hanabi.rest/cli +## 0.1.3 + +### Patch Changes + +- [#9](https://github.com/hanabi-rest/cli/pull/9) [`58ff217`](https://github.com/hanabi-rest/cli/commit/58ff2170ab1c600f083dd31500164c75a0ebc843) Thanks [@yutakobayashidev](https://github.com/yutakobayashidev)! - fix: fix: initial commit message + ## 0.1.2 ### Patch Changes diff --git a/package.json b/package.json index fb79907..478f716 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hanabi.rest/cli", - "version": "0.1.2", + "version": "0.1.3", "description": "CLI to download code, SQL, and dependencies for hanabi.rest applications.", "publishConfig": { "access": "public" From ac79fdab032d3febe07773ba9316a55f075ed0c7 Mon Sep 17 00:00:00 2001 From: yutakobaayshidev Date: Fri, 15 Mar 2024 04:50:53 +0900 Subject: [PATCH 3/4] Add dist/templates/\*\*/.gitignore to package.json files --- .changeset/quiet-seahorses-notice.md | 5 +++++ package.json | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changeset/quiet-seahorses-notice.md diff --git a/.changeset/quiet-seahorses-notice.md b/.changeset/quiet-seahorses-notice.md new file mode 100644 index 0000000..3d64ebb --- /dev/null +++ b/.changeset/quiet-seahorses-notice.md @@ -0,0 +1,5 @@ +--- +"@hanabi.rest/cli": patch +--- + +Add dist/templates/\*\*/.gitignore to files in package.json diff --git a/package.json b/package.json index fb79907..c79310b 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,8 @@ "url": "https://github.com/hanabi-rest/cli" }, "files": [ - "dist" + "dist", + "dist/templates/**/.gitignore" ], "keywords": [ "sqlite", @@ -25,7 +26,7 @@ ], "scripts": { "dev": "tsup --watch", - "build": "tsup && cp -r templates dist/", + "build": "tsup && cp -r templates dist/ && rm dist/templates/index.ts", "typecheck": "tsc --noEmit", "clean": "rimraf dist", "start": "node dist/index.js", From 8fc7973004332eeecdf99bd943bc1220123d1df4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 14 Mar 2024 19:51:36 +0000 Subject: [PATCH 4/4] Version Packages --- .changeset/quiet-seahorses-notice.md | 5 ----- CHANGELOG.md | 6 ++++++ package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/quiet-seahorses-notice.md diff --git a/.changeset/quiet-seahorses-notice.md b/.changeset/quiet-seahorses-notice.md deleted file mode 100644 index 3d64ebb..0000000 --- a/.changeset/quiet-seahorses-notice.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@hanabi.rest/cli": patch ---- - -Add dist/templates/\*\*/.gitignore to files in package.json diff --git a/CHANGELOG.md b/CHANGELOG.md index 02a29d7..1dcfe77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @hanabi.rest/cli +## 0.1.4 + +### Patch Changes + +- [#11](https://github.com/hanabi-rest/cli/pull/11) [`ac79fda`](https://github.com/hanabi-rest/cli/commit/ac79fdab032d3febe07773ba9316a55f075ed0c7) Thanks [@yutakobayashidev](https://github.com/yutakobayashidev)! - Add dist/templates/\*\*/.gitignore to files in package.json + ## 0.1.3 ### Patch Changes diff --git a/package.json b/package.json index 3863b1e..b6987d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hanabi.rest/cli", - "version": "0.1.3", + "version": "0.1.4", "description": "CLI to download code, SQL, and dependencies for hanabi.rest applications.", "publishConfig": { "access": "public"