@codefresh-io/cf-telemetry 1.0.1 → 1.0.2

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 (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # cf-monitoring
1
+ # cf-telemetry
2
2
 
3
3
  Base utils for monitoring.
4
4
 
@@ -17,7 +17,7 @@ Please refer to the separate docs above for further configuration and usage deta
17
17
 
18
18
  ```TS
19
19
  // index.ts
20
- import { init } from '@codefresh-io/cf-monitoring';
20
+ import { init } from '@codefresh-io/cf-telemetry';
21
21
 
22
22
  await init();
23
23
  ```
package/package.json CHANGED
@@ -1,10 +1,14 @@
1
1
  {
2
2
  "name": "@codefresh-io/cf-telemetry",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "dist/index.js",
5
5
  "files": [
6
6
  "dist/**/*"
7
7
  ],
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/codefresh-io/cf-telemetry.git"
11
+ },
8
12
  "packageManager": "yarn@4.5.2",
9
13
  "scripts": {
10
14
  "build": "rimraf ./dist && tsc --project tsconfig.build.json",