Skip to content

Commit

Permalink
Add keywords to package.json for all packages
Browse files Browse the repository at this point in the history
Added "MBC", "CQRS", and "Serverless" keywords to the package.json files across multiple packages. This should improve discoverability and categorization of the packages in the ecosystem.
  • Loading branch information
koichimurakami committed Oct 24, 2024
1 parent 02ce8f1 commit 5defc9c
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ $ npm run release
- Serverless framework: https://www.serverless.com/framework/docs

## License
Copyright © 2024, Murakami Business Consulting, Inc. https://www.mbc-net.com/
Copyright © 2024, Murakami Business Consulting, Inc. https://www.mbc-net.com/
This project and sub projects are under the MIT License.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"url": "https://github.com/mbc-net/mbc-cqrs-serverless.git"
},
"keywords": [
"MBC",
"CQRS",
"Serverless"
],
Expand Down
5 changes: 5 additions & 0 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"name": "@mbc-cqrs-serverless/cli",
"version": "0.1.17-beta.0",
"description": "a CLI to get started with MBC CQRS serverless framework",
"keywords": [
"MBC",
"CQRS",
"Serverless"
],
"bin": {
"mbc": "./dist/index.js"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"name": "@mbc-cqrs-serverless/core",
"version": "0.1.17-beta.0",
"description": "CQRS and event base core",
"keywords": [
"MBC",
"CQRS",
"Serverless"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions packages/sequence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"name": "@mbc-cqrs-serverless/sequence",
"version": "0.1.17-beta.0",
"description": "Generate increment sequence with time-rotation",
"keywords": [
"MBC",
"CQRS",
"Serverless"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions packages/task/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"name": "@mbc-cqrs-serverless/task",
"version": "0.1.17-beta.0",
"description": "long-running task",
"keywords": [
"MBC",
"CQRS",
"Serverless"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down
5 changes: 5 additions & 0 deletions packages/ui-setting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"name": "@mbc-cqrs-serverless/ui-setting",
"version": "0.1.17-beta.0",
"description": "Setting master data",
"keywords": [
"MBC",
"CQRS",
"Serverless"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
Expand Down

0 comments on commit 5defc9c

Please sign in to comment.