Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/hanabi-rest/cli
Browse files Browse the repository at this point in the history
  • Loading branch information
yutakobayashidev committed Mar 14, 2024
2 parents 437d513 + a533ced commit 67479dd
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -14,7 +14,8 @@
"url": "https://github.com/hanabi-rest/cli"
},
"files": [
"dist"
"dist",
"dist/templates/**/.gitignore"
],
"keywords": [
"sqlite",
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 67479dd

Please sign in to comment.