@patcherly/nodejs-connector 2.2.2 → 2.2.3
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/README.md +3 -1
- package/node_agent.js +1 -1
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Patcherly Node.js connector
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Patcherly detects bugs in real time in your app. It creates a customized AI patch, and once you approve it, backs up your code, fixes it & tests the patch for you. If anything is off, it rolls back the changes automatically, or you can always roll it back in a click.
|
|
4
|
+
|
|
5
|
+
**[patcherly.com](https://patcherly.com)** · **[Node.js connector docs](https://help.patcherly.com/connectors/nodejs/)**
|
|
4
6
|
|
|
5
7
|
## Recommended install
|
|
6
8
|
|
package/node_agent.js
CHANGED
|
@@ -193,7 +193,7 @@ const { DEFAULT_API_URL, getConfiguredServerUrl, isExplicitApiBaseConfigured } =
|
|
|
193
193
|
* update-release-latest.yml workflow so the value baked into every released tarball matches
|
|
194
194
|
* the GitHub release tag. Reported to the API on every context upload.
|
|
195
195
|
*/
|
|
196
|
-
const PATCHERLY_CONNECTOR_VERSION = '2.2.
|
|
196
|
+
const PATCHERLY_CONNECTOR_VERSION = '2.2.3';
|
|
197
197
|
let CENTRAL_SERVER_URL = getConfiguredServerUrl();
|
|
198
198
|
const IDS_PATH = process.env.PATCHERLY_IDS_PATH || path.join(__dirname, 'patcherly_ids.json');
|
|
199
199
|
const QUEUE_PATH = process.env.PATCHERLY_QUEUE_PATH || path.join(__dirname, 'patcherly_queue.jsonl');
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patcherly/nodejs-connector",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"description": "Patcherly
|
|
3
|
+
"version": "2.2.3",
|
|
4
|
+
"description": "Patcherly detects bugs in real time in your app. It creates a customized AI patch, and once you approve it, backs up your code, fixes it & tests the patch for you. If anything is off, it rolls back the changes automatically, or you can always roll it back in a click. Website: https://patcherly.com · Docs: https://help.patcherly.com/connectors/nodejs/",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"homepage": "https://patcherly.com",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/Patcherly-Official/patcherly-connector-packages/issues"
|
|
9
|
+
},
|
|
6
10
|
"publishConfig": {
|
|
7
11
|
"access": "public"
|
|
8
12
|
},
|