From d940fa8797fae373e34095071f3fb2e75ed05a2a Mon Sep 17 00:00:00 2001 From: "sur.la.route" Date: Mon, 18 Jul 2022 08:56:53 -0500 Subject: [PATCH 1/2] updated renovate config --- renovate.json | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 67782ec..5e88b28 100644 --- a/renovate.json +++ b/renovate.json @@ -9,16 +9,13 @@ ":npm", "npm:unpublishSafe" ], - "ignoreDeps": ["@fortawesome/fontawesome-free"], - "assignees": [ - "christopherpickering" - ], "bumpVersion": "patch", "commitMessagePrefix": "chore(deps)", "labels": [ "maintenance", "renovate" ], + "baseBranches": ["dev"], "packageRules": [ { "matchUpdateTypes": ["pin","digest"], From 79fd5627da5a9312b0aec1cfc6ac8905aa96290a Mon Sep 17 00:00:00 2001 From: Jed Date: Thu, 21 Jul 2022 14:36:14 +0200 Subject: [PATCH 2/2] adds missing shebang in node binary --- bin/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/index.js b/bin/index.js index 5753bca..4af486a 100644 --- a/bin/index.js +++ b/bin/index.js @@ -1,3 +1,5 @@ +#!/usr/bin/env node + const process = require('process'); const { PythonShell } = require('python-shell');