@anchan828/nest-cloud-run-queue-pubsub-publisher 3.1.5 → 3.1.7

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.
@@ -25,7 +25,7 @@ let PubSubPublisherService = class PubSubPublisherService {
25
25
  const topicName = this.getTopicName(options);
26
26
  const topic = this.pubsub.topic(topicName, Object.assign({}, this.options.publishConfig, options));
27
27
  const { attributes, ...data } = this.options.extraConfig?.prePublish
28
- ? await this.options.extraConfig?.prePublish(message)
28
+ ? await this.options.extraConfig.prePublish(message)
29
29
  : message;
30
30
  const messageId = await topic.publishMessage({
31
31
  attributes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anchan828/nest-cloud-run-queue-pubsub-publisher",
3
- "version": "3.1.5",
3
+ "version": "3.1.7",
4
4
  "description": "> TODO: description",
5
5
  "homepage": "https://github.com/anchan828/nest-cloud-run-queue/tree/master/packages/pubsub-publish#readme",
6
6
  "bugs": {
@@ -24,7 +24,7 @@
24
24
  "build": "tsc -p tsconfig.build.json",
25
25
  "build:watch": "tsc --watch",
26
26
  "copy:license": "cp ../../LICENSE ./",
27
- "lint": "TIMING=1 eslint --ignore-path ../../.eslintignore '**/*.ts'",
27
+ "lint": "TIMING=1 eslint '**/*.ts'",
28
28
  "lint:fix": "npm run lint -- --fix",
29
29
  "prepublishOnly": "rm -rf dist && npm run build && rm -f dist/*.tsbuildinfo && npm run copy:license",
30
30
  "test": "jest --coverage --logHeapUsage --runInBand",
@@ -33,7 +33,7 @@
33
33
  "watch": "tsc -w"
34
34
  },
35
35
  "dependencies": {
36
- "@anchan828/nest-cloud-run-queue-common": "^3.1.5",
36
+ "@anchan828/nest-cloud-run-queue-common": "^3.1.7",
37
37
  "@google-cloud/pubsub": "^4.0.6"
38
38
  },
39
39
  "devDependencies": {
@@ -47,5 +47,5 @@
47
47
  "access": "public"
48
48
  },
49
49
  "packageManager": "npm@10.8.2",
50
- "gitHead": "1f7765a93d17f5b74d1e4f80814335c800154c02"
50
+ "gitHead": "d63c1143192396b815ac6b72d54925971d00497a"
51
51
  }