@alwaysmeticulous/replay-orchestrator-launcher 2.44.0 → 2.45.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 +3 -1
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
# Replay Orchestrator Launcher
|
|
2
2
|
|
|
3
|
-
Downloads the replay-orchestrator bundle
|
|
3
|
+
Downloads the replay-orchestrator bundle scripts and executes them.
|
|
4
|
+
|
|
5
|
+
Note that puppeteer must be installed locally in node_modules for the script to work, since although the puppeteer js code is bundled in the replay-orchestrator bundle script the install task for puppeteer downloads the required Chromium version.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwaysmeticulous/replay-orchestrator-launcher",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.45.0",
|
|
4
4
|
"description": "Downloads the replay-orchestrator bundle script and executes it",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -19,11 +19,14 @@
|
|
|
19
19
|
"depcheck": "depcheck --ignore-patterns=dist"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@alwaysmeticulous/common": "^2.44.
|
|
23
|
-
"@alwaysmeticulous/downloading-helpers": "^2.44.
|
|
24
|
-
"@alwaysmeticulous/sdk-bundles-api": "^2.
|
|
22
|
+
"@alwaysmeticulous/common": "^2.44.1",
|
|
23
|
+
"@alwaysmeticulous/downloading-helpers": "^2.44.1",
|
|
24
|
+
"@alwaysmeticulous/sdk-bundles-api": "^2.45.0",
|
|
25
25
|
"loglevel": "^1.8.0"
|
|
26
26
|
},
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"puppeteer": "19.7.5"
|
|
29
|
+
},
|
|
27
30
|
"author": {
|
|
28
31
|
"name": "The Meticulous Team",
|
|
29
32
|
"email": "eng@meticulous.ai",
|
|
@@ -41,5 +44,5 @@
|
|
|
41
44
|
"bugs": {
|
|
42
45
|
"url": "https://github.com/alwaysmeticulous/meticulous-sdk/issues"
|
|
43
46
|
},
|
|
44
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "3cfa8654dc5bf8a1426c4a3e2458d2ced7c94205"
|
|
45
48
|
}
|