diff --git a/CHANGELOG.md b/CHANGELOG.md index e0f0007..1dcfe77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # @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 + +- [#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..b6987d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hanabi.rest/cli", - "version": "0.1.2", + "version": "0.1.4", "description": "CLI to download code, SQL, and dependencies for hanabi.rest applications.", "publishConfig": { "access": "public" @@ -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", 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;