@vyriy/scripts 0.1.9 → 0.1.13

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.
Files changed (3) hide show
  1. package/api.js +1 -1
  2. package/package.json +14 -9
  3. package/ui.js +1 -1
package/api.js CHANGED
@@ -11,5 +11,5 @@ export const api = (stackApiResource = 'ApiGatewayUrl', healthcheckUrl = 'health
11
11
  const testingUrl = `${url}${healthcheckUrl}`;
12
12
  logger.info(`Testing: ${testingUrl}`);
13
13
  await retry(async () => request(testingUrl), { retries: 2, delay: 2000 });
14
- logger.info('\nAPI Smoke testing finished!');
14
+ logger.info('API Smoke testing finished!');
15
15
  });
package/package.json CHANGED
@@ -1,20 +1,25 @@
1
1
  {
2
2
  "name": "@vyriy/scripts",
3
- "version": "0.1.9",
3
+ "version": "0.1.13",
4
4
  "description": "Shared scripts package for Vyriy projects",
5
5
  "type": "module",
6
6
  "main": "./index.js",
7
7
  "dependencies": {
8
- "@vyriy/cdk": "0.1.9",
9
- "@vyriy/exec": "0.1.9",
10
- "@vyriy/logger": "0.1.9",
11
- "@vyriy/request": "0.1.9",
12
- "@vyriy/retry": "0.1.9",
13
- "@vyriy/script": "0.1.9",
14
- "@vyriy/services": "0.1.9",
15
- "@vyriy/smoke": "0.1.9"
8
+ "@vyriy/cdk": "0.1.13",
9
+ "@vyriy/exec": "0.1.13",
10
+ "@vyriy/logger": "0.1.13",
11
+ "@vyriy/request": "0.1.13",
12
+ "@vyriy/retry": "0.1.13",
13
+ "@vyriy/script": "0.1.13",
14
+ "@vyriy/services": "0.1.13",
15
+ "@vyriy/smoke": "0.1.13"
16
16
  },
17
17
  "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/evheniy/vyriy",
21
+ "directory": "packages/scripts"
22
+ },
18
23
  "types": "./index.d.ts",
19
24
  "exports": {
20
25
  ".": {
package/ui.js CHANGED
@@ -11,7 +11,7 @@ export const ui = (resourceName = 'DistributionUrl', hasJs = true) => script(asy
11
11
  delay: 2000,
12
12
  };
13
13
  const uiUrl = output()[resourceName];
14
- logger.info('\nUI domain:', uiUrl);
14
+ logger.info('UI domain:', uiUrl);
15
15
  await retry(async () => {
16
16
  logger.info(`Testing: ${uiUrl}`);
17
17
  await request(uiUrl);