sara-qa-agent 1.6.6 → 1.7.0
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 +1 -1
- package/bin/sara-qa-agent.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ The installer will:
|
|
|
14
14
|
|
|
15
15
|
1. point npm at WE WILL's private GitHub Packages scope
|
|
16
16
|
2. ask you to sign in if needed
|
|
17
|
-
3. download the private `@
|
|
17
|
+
3. download the private `@we-will-tech/sara-qa-agent` package
|
|
18
18
|
4. run Sara's real installer
|
|
19
19
|
|
|
20
20
|
You need access to the private Sara GitHub repo/package.
|
package/bin/sara-qa-agent.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
const { execFileSync, spawnSync } = require("child_process");
|
|
5
5
|
|
|
6
|
-
const SCOPE = "@
|
|
6
|
+
const SCOPE = "@we-will-tech";
|
|
7
7
|
const REGISTRY = "https://npm.pkg.github.com";
|
|
8
|
-
const PRIVATE_PACKAGE = "@
|
|
8
|
+
const PRIVATE_PACKAGE = "@we-will-tech/sara-qa-agent@latest";
|
|
9
9
|
|
|
10
10
|
function print(message = "") {
|
|
11
11
|
process.stdout.write(`${message}\n`);
|