Skip to content

Commit

Permalink
fix: fixed release issue
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-cardenas-coding committed Jan 5, 2023
1 parent 6fa866b commit 2e3f9ff
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 28 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ hello-universe-api
# vendor/
.DS_STORE

node_modules/
node_modules/

.env*
2 changes: 1 addition & 1 deletion .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
npx --no -- commitlint --edit ""
npx --no -- commitlint --edit ''
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
. "$(dirname -- "$0")/_/husky.sh"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ The [Hello Universe](https://github.com/spectrocloud/hello-universe) app include
The quickest method to start the API server locally is by using the Docker image.

```shell
docker pull ghcr.io/spectrocloud/hello-universe-api:1.0.1
docker run -p 3000:3000 ghcr.io/spectrocloud/hello-universe-api:1.0.1
docker pull ghcr.io/spectrocloud/hello-universe-api:1.0.2
docker run -p 3000:3000 ghcr.io/spectrocloud/hello-universe-api:1.0.2
```

To start the API server you must have connectivity to a postgres instance. Use [environment variables](#environment-variables) to customize the API server start parameters.
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "hello-universe-api",
"version": "1.0.0",
"version": "1.0.1",
"private": false,
"scripts": {
"prepare": "husky install",
"release": "standard-version"
"prepare": "husky install",
"release": "standard-version"
},
"devDependencies": {
"semantic-release": "^19.0.5",
"standard-version": "^9.5.0",
"husky": "^8.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/github": "latest",
"@semantic-release/git": "latest",
"@semantic-release/npm": "latest"
"semantic-release": "^19.0.5",
"standard-version": "^9.5.0",
"@semantic-release/changelog": "^6.0.1",
"husky": "^8.0.3",
"@semantic-release/exec": "^6.0.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/github": "latest",
"@semantic-release/git": "latest",
"@semantic-release/npm": "latest"
}
}
}

0 comments on commit 2e3f9ff

Please sign in to comment.