Skip to content

Commit

Permalink
chore(logs): install standard-version
Browse files Browse the repository at this point in the history
  • Loading branch information
The-Sebastian committed Jan 30, 2025
1 parent 6d09d8e commit 560be6a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@meltwater/jackalambda",
"version": "2.0.4",
"version": "2.0.2",
"description": "Mythical lambda creature",
"main": "index.js",
"module": "lib/index.js",
Expand Down Expand Up @@ -50,7 +50,12 @@
"pretty": "prettier --ignore-path .gitignore --write '**/*.(js|json|graphql|md)'",
"format": "npm-run-all --serial pretty format:*",
"format:ts": "eslint --ignore-path .gitignore --fix --ext .js .",
"report": "nyc report"
"report": "nyc report",
"patch": "standard-version --release-as patch --skip.changelog && git push && git push --tags",
"preminor": "npm-run-all --serial test build",
"minor": "standard-version --release-as minor --skip.changelog && git push && git push --tags",
"premajor": "npm-run-all --serial test build",
"major": "standard-version --release-as major --skip.changelog && git push && git push --tags"
},
"engines": {
"node": ">=12.13.0"
Expand Down Expand Up @@ -87,6 +92,7 @@
"prettier": "^2.0.2",
"serverless": "^2.1.1",
"serverless-offline": "^6.1.2",
"standard-version": "^9.5.0",
"testdouble": "^3.16.1"
}
}
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9203,7 +9203,7 @@ stack-utils@^2.0.3:
dependencies:
escape-string-regexp "^2.0.0"

standard-version@^9.0.0:
standard-version@^9.0.0, standard-version@^9.5.0:
version "9.5.0"
resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-9.5.0.tgz#851d6dcddf5320d5079601832aeb185dbf497949"
integrity sha512-3zWJ/mmZQsOaO+fOlsa0+QK90pwhNd042qEcw6hKFNoLFs7peGyvPffpEBbK/DSGPbyOvli0mUIFv5A4qTjh2Q==
Expand Down

0 comments on commit 560be6a

Please sign in to comment.