Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vanthome committed Nov 13, 2024
1 parent 5342e88 commit e8789b7
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 28 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Build
FROM node:22.2.0-alpine3.20 as build
FROM node:22.11.0-alpine3.20 as build
ENV NO_UPDATE_NOTIFIER=true

USER node
Expand All @@ -17,7 +17,7 @@ RUN npm run build


### Deployment
FROM node:22.2.0-alpine3.20 as deployment
FROM node:22.11.0-alpine3.20 as deployment

ENV NO_UPDATE_NOTIFIER=true

Expand Down
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@restorecommerce/chassis-srv": "1.6.4",
"@restorecommerce/grpc-client": "2.2.5",
"@restorecommerce/handlebars-helperized": "1.4.3",
"@restorecommerce/kafka-client": "1.2.19",
"@restorecommerce/kafka-client": "1.2.20",
"@restorecommerce/logger": "1.3.2",
"@restorecommerce/service-config": "1.0.16",
"cheerio": "1.0.0",
Expand All @@ -29,7 +29,7 @@
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@restorecommerce/dev": "0.0.13",
"@restorecommerce/protos": "6.10.0",
"@restorecommerce/protos": "6.10.1",
"@semantic-release-plus/docker": "^3.1.3",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "10.0.9",
Expand Down
6 changes: 4 additions & 2 deletions src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ export class Service {
this.logger.info('Subscribing Kafka topics');
await this.events.start();
this.offsetStore = new OffsetStore(this.events, this.cfg, this.logger);
const reply = this.reply;
const commandService = this.commandService;
const logger = this.logger;
const marshallProtobufAny = this.marshallProtobufAny;
const unmarshallProtobufAny = this.unmarshallProtobufAny;
Expand Down Expand Up @@ -239,9 +241,9 @@ export class Service {
}
}
}
await that.reply(id, response);
await reply(id, response);
} else { // commands
await that.commandService.command(msg, context);
await commandService.command(msg, context);
}
};

Expand Down

0 comments on commit e8789b7

Please sign in to comment.