From d3b90a556afe244b56c1a64c152af5b973e32a86 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Thu, 23 Jun 2022 22:10:08 +0200 Subject: [PATCH] chore: adjust renovate config --- pbf/index.js | 4 ++-- renovate.json | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pbf/index.js b/pbf/index.js index b1eea60..18fc3ff 100644 --- a/pbf/index.js +++ b/pbf/index.js @@ -1,5 +1,5 @@ const fs = require('fs'); -const debug=require('debug')('pbf'); +const debug=require('debug')('debug'); const gtfsRt=require('../../proto2js/js/gtfs-rt.js'); const Pbf = require('pbf'); @@ -12,7 +12,7 @@ async function run() { debug('run started...'); const FeedMessage = gtfsRt.FeedMessage; debug('read gtfs-rt feed from file'); - const buffer=fs.readFileSync('/tmp/gtfsr_connect.bin'); + const buffer=fs.readFileSync('/tmp/vbn/gtfsr_connect.bin'); if(buffer instanceof Buffer){ debug('buffer is instance of Buffer'); debug('read buffer and create pbf'); diff --git a/renovate.json b/renovate.json index 5077cbe..4c6bd12 100644 --- a/renovate.json +++ b/renovate.json @@ -12,6 +12,11 @@ { "matchDepTypes": ["devDependencies"], "automerge": true + }, + { + "matchingUpdateTypes": ["minor","patch"], + "matchCurrentVersion": "!/^0/", + "automerge": true } ] }