@test-station/cli 0.2.14 → 0.2.15
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 +5 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -287,10 +287,11 @@ Shared-key auth:
|
|
|
287
287
|
|
|
288
288
|
Optional S3-backed artifact storage:
|
|
289
289
|
|
|
290
|
-
- set `vars.
|
|
291
|
-
- optionally set `vars.
|
|
292
|
-
- optionally set `vars.
|
|
293
|
-
- set `secrets.
|
|
290
|
+
- set `vars.S3_BUCKET` to enable `aws s3 sync` of the report directory
|
|
291
|
+
- optionally set `vars.S3_STORAGE_PREFIX` to control the object prefix
|
|
292
|
+
- optionally set `vars.S3_PUBLIC_URL` when the uploaded artifacts are browser-accessible through S3 static hosting, CloudFront, or another CDN
|
|
293
|
+
- set `secrets.S3_AWS_ACCESS_KEY_ID` and `secrets.S3_AWS_SECRET_ACCESS_KEY` for the sync credentials
|
|
294
|
+
- optionally set `vars.S3_AWS_REGION` to override the default `us-east-1`
|
|
294
295
|
|
|
295
296
|
Current storage model:
|
|
296
297
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@test-station/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
".": "./src/index.js"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@test-station/core": "0.2.
|
|
16
|
-
"@test-station/render-html": "0.2.
|
|
15
|
+
"@test-station/core": "0.2.15",
|
|
16
|
+
"@test-station/render-html": "0.2.15"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "node ../../scripts/check-package.mjs ./src/index.js && node --check ./src/cli.js",
|