@medusajs/telemetry 3.0.0-snapshot-20250410112222 → 3.0.0-snapshot-20251104011621
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/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -15
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["../src/index.js","../src/postinstall.js","../src/store.js","../src/telemeter.js","../src/util/create-flush.js","../src/util/get-term-program.js","../src/util/in-memory-config.js","../src/util/is-ci.js","../src/util/is-truthy.js","../src/util/outbox-store.js","../src/util/send.js","../src/util/show-notification.js","../src/util/telemetry-dispatcher.js"],"version":"5.
|
|
1
|
+
{"root":["../src/index.js","../src/postinstall.js","../src/store.js","../src/telemeter.js","../src/util/create-flush.js","../src/util/get-term-program.js","../src/util/in-memory-config.js","../src/util/is-ci.js","../src/util/is-truthy.js","../src/util/outbox-store.js","../src/util/send.js","../src/util/show-notification.js","../src/util/telemetry-dispatcher.js"],"version":"5.9.3"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medusajs/telemetry",
|
|
3
|
-
"version": "3.0.0-snapshot-
|
|
3
|
+
"version": "3.0.0-snapshot-20251104011621",
|
|
4
4
|
"description": "Telemetry for Medusa",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -19,33 +19,26 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Sebastian Rindom",
|
|
21
21
|
"license": "MIT",
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"cross-env": "^5.2.1",
|
|
24
|
-
"jest": "^29.7.0",
|
|
25
|
-
"nodemon": "^2.0.20",
|
|
26
|
-
"rimraf": "^3.0.2",
|
|
27
|
-
"typescript": "^5.6.2"
|
|
28
|
-
},
|
|
29
22
|
"scripts": {
|
|
30
23
|
"start": "nodemon --watch plugins/ --watch src/ --exec node src/index.js",
|
|
31
24
|
"prepare": "cross-env NODE_ENV=production yarn run build",
|
|
32
|
-
"watch": "tsc --build --watch",
|
|
33
|
-
"build": "rimraf dist && tsc --build",
|
|
25
|
+
"watch": "yarn run -T tsc --build --watch",
|
|
26
|
+
"build": "yarn run -T rimraf dist && yarn run -T tsc --build",
|
|
34
27
|
"serve": "node dist/index.js",
|
|
35
28
|
"postinstall": "node dist/postinstall.js || true",
|
|
36
|
-
"test": "jest --passWithNoTests src"
|
|
29
|
+
"test": "../../node_modules/.bin/jest --passWithNoTests src"
|
|
37
30
|
},
|
|
38
31
|
"dependencies": {
|
|
39
|
-
"@babel/runtime": "^7.
|
|
40
|
-
"axios": "^
|
|
32
|
+
"@babel/runtime": "^7.26.10",
|
|
33
|
+
"axios": "^1.13.1",
|
|
41
34
|
"axios-retry": "^3.1.9",
|
|
42
35
|
"boxen": "^5.0.1",
|
|
43
36
|
"ci-info": "^3.2.0",
|
|
44
|
-
"configstore": "5.0.1",
|
|
37
|
+
"configstore": "^5.0.1",
|
|
45
38
|
"global": "^4.4.0",
|
|
46
39
|
"is-docker": "^2.2.1",
|
|
47
40
|
"remove-trailing-slash": "^0.1.1",
|
|
48
|
-
"uuid": "^
|
|
41
|
+
"uuid": "^9.0.0"
|
|
49
42
|
},
|
|
50
43
|
"gitHead": "41a5425405aea5045a26def95c0dc00cf4a5a44d"
|
|
51
44
|
}
|