Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
"repo:reset": "find ../node-microservices-suite -type d -name 'node_modules' -exec rm -rf {} + && find ../node-microservices-suite -type f -name 'package-lock.json' -delete && find ../node-microservices-suite -type f -name 'yarn.lock' -delete && find ../node-microservices-suite -type d -name 'yarn-*' -exec rm -rf {} +",
"repo:reset:1": "rm -rf node_modules",
"generate:release": "npx changelogen@latest --release",
"release:shared:config": "yarn workspace @microservices-suite/config run release",
"release:shared:constants": "yarn workspace @microservices-suite/constants run release",
"release:shared:errors": "yarn workspace @microservices-suite/errors run release",
"release:shared:middlewares": "yarn workspace @microservices-suite/middlewares run release",
"release:shared:utilities": "yarn workspace @microservices-suite/utilities run release",
"release:shared:validations": "yarn workspace @microservices-suite/validations run release",
"release:config": "yarn workspace @microservices-suite/config run release",
"release:constants": "yarn workspace @microservices-suite/constants run release",
"release:errors": "yarn workspace @microservices-suite/errors run release",
"release:middlewares": "yarn workspace @microservices-suite/middlewares run release",
"release:utilities": "yarn workspace @microservices-suite/utilities run release",
"release:validations": "yarn workspace @microservices-suite/validations run release",
"test": "jest"
},
"workspaces": {
Expand Down
7 changes: 4 additions & 3 deletions shared/config/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
{
"name": "@microservices-suite/config",
"version": "1.0.7",
"version": "1.0.9",
"description": "This contains common configurations for things like env files,loggers etc for easy setup of environment specific settings",
"main": "index.js",
"author": "Gilbert Andanje",
"license": "MIT",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"release": "npx bumpp-version@latest && yarn publish"
"release": "npx bumpp-version@latest && npm publish"
},
"private": false,
"dependencies": {
Expand Down
7 changes: 4 additions & 3 deletions shared/constants/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "@microservices-suite/constants",
"version": "1.4.2",
"version": "1.5.13",
"description": "",
"devDependencies": {},
"author": "Gilbert Andanje",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"release": "npx bumpp-version@latest && yarn publish"
"release": "npx bumpp-version@latest && npm publish"
},
"license": "ISC"
}
5 changes: 3 additions & 2 deletions shared/errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
"main": "index.js",
"author": "Gilbert Andanje",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"release": "npx bumpp-version@latest && yarn publish"
"release": "npx bumpp-version@latest && npm publish"
},
"license": "MIT"
}
5 changes: 3 additions & 2 deletions shared/middlewares/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
"author": "Gilbert Andanje",
"license": "ISC",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"release:major": "npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest",
"release": "npx bumpp-version@latest && yarn publish"
"release": "npx bumpp-version@latest && npm publish"
}
}
5 changes: 3 additions & 2 deletions shared/utilities/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
"author": "Gilbert Andanje",
"license": "ISC",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"release:major": "npm version $(semver $npm_package_version -i major) && npm publish --tag latest",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest",
"release": "npx bumpp-version@latest && yarn publish"
"release": "npx bumpp-version@latest && npm publish"
},
"dependencies": {
"joi": "^17.12.2"
Expand Down
5 changes: 3 additions & 2 deletions shared/validations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
"author": "Gilbert Andanje",
"license": "ISC",
"publishConfig": {
"access": "public"
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"release": "npx bumpp-version@latest && yarn publish"
"release": "npx bumpp-version@latest && npm publish"
}
}