samanbayaka 0.0.7 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/commit-hash.mjs CHANGED
@@ -1 +1 @@
1
- export const COMMIT_HASH = '0aa5891';
1
+ export const COMMIT_HASH = 'cbe6bca';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "samanbayaka",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Moleculer Gateway service with kafka transporter",
5
5
  "homepage": "https://gitlab.com/dalal.suvendu/samanbayaka#readme",
6
6
  "bugs": {
@@ -32,10 +32,10 @@
32
32
  "cookie-parser": "^1.4.7",
33
33
  "helmet": "^8.1.0",
34
34
  "kafkajs": "^2.2.4",
35
- "moleculer": "^0.14.35",
35
+ "moleculer": "0.15.0",
36
36
  "moleculer-auto-openapi": "^1.1.7",
37
- "moleculer-repl": "^0.7.4",
38
- "moleculer-web": "^0.10.8",
37
+ "moleculer-repl": "^0.8.0",
38
+ "moleculer-web": "^0.11.0",
39
39
  "msgpack5": "^6.0.2",
40
40
  "nats": "^2.29.3",
41
41
  "pnpm": "^10.32.1",
package/.husky/pre-commit DELETED
@@ -1,9 +0,0 @@
1
- # 1. Bump patch version without creating git tag
2
- npm version patch --no-git-tag-version
3
-
4
- # 2. Write the latest short git commit hash to commit-hash.mjs
5
- SHORT_HASH=$(git rev-parse --short HEAD)
6
- echo "export const COMMIT_HASH = '$SHORT_HASH';" > commit-hash.mjs
7
-
8
- # 3. Stage the changed files for commit
9
- git add package.json commit-hash.mjs