Skip to content

Commit

Permalink
feat: add release-it package
Browse files Browse the repository at this point in the history
  • Loading branch information
Pigrabbit committed Apr 3, 2023
1 parent bf0289d commit 762760e
Show file tree
Hide file tree
Showing 3 changed files with 1,410 additions and 72 deletions.
10 changes: 10 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true,
"autoGenerate": true,
"web": true
}
}
10 changes: 8 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "@nestjs-library/config",
"version": "0.0.1",
"version": "0.0.0",
"description": "A NestJS module for managing environment variables easily and securely.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/woowabros/nestjs-library-config"
Expand All @@ -15,7 +19,8 @@
"format": "prettier --write --list-different .",
"lint": "eslint --ext .ts,.js .",
"build": "tsc -p tsconfig.lib.json",
"prepare": "husky install && chmod ug+x .husky/*"
"prepare": "husky install && chmod ug+x .husky/*",
"release": "release-it"
},
"keywords": [
"NestJS",
Expand Down Expand Up @@ -57,6 +62,7 @@
"jest": "28.1.3",
"lint-staged": "^13.2.0",
"prettier": "^2.6.2",
"release-it": "^15.10.0",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "~4.9.4"
Expand Down
Loading

0 comments on commit 762760e

Please sign in to comment.