gaunt-sloth-assistant 0.1.0 → 0.1.1

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/RELEASE-HOWTO.md CHANGED
@@ -9,7 +9,7 @@ git push --tags
9
9
 
10
10
  For minor, e.g., from 0.0.8 to 0.1.0
11
11
  ```shell
12
- npm version patch
12
+ npm version minor
13
13
  git push
14
14
  git push --tags
15
15
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gaunt-sloth-assistant",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "",
5
5
  "license": "MIT",
6
6
  "author": "Andrew Kondratev",
@@ -105,7 +105,7 @@ export function reviewCommand(program, context) {
105
105
  // Get PR diff using the 'gh' provider
106
106
  const providerPath = `../providers/${CONTENT_PROVIDERS['gh']}`;
107
107
  const {get} = await import(providerPath);
108
- content.push(await get(prId));
108
+ content.push(await get(null, prId));
109
109
 
110
110
  const {review} = await import('../modules/reviewModule.js');
111
111
  await review(`sloth-PR-${prId}-review`, preamble.join("\n"), content.join("\n"));