🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@astrojs/telemetry

Package Overview
Dependencies
Maintainers
2
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@astrojs/telemetry - npm Package Compare versions

Comparing version
3.3.1
to
3.3.2
+1
-2
dist/config.js

@@ -5,3 +5,2 @@ import fs from "node:fs";

import process from "node:process";
import dget from "dlv";
import { dset } from "dset";

@@ -73,3 +72,3 @@ function getConfigDir(name) {

get(key) {
return dget(this.store, key);
return key.split(".").reduce((obj, k) => obj?.[k], this.store);
}

@@ -76,0 +75,0 @@ has(key) {

{
"name": "@astrojs/telemetry",
"version": "3.3.1",
"version": "3.3.2",
"type": "module",

@@ -27,3 +27,2 @@ "types": "./dist/index.d.ts",

"ci-info": "^4.4.0",
"dlv": "^1.1.3",
"dset": "^3.1.4",

@@ -35,3 +34,2 @@ "is-docker": "^4.0.0",

"devDependencies": {
"@types/dlv": "^1.1.5",
"@types/node": "^22.10.6",

@@ -48,8 +46,7 @@ "@types/which-pm-runs": "^1.0.2",

"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build": "astro-scripts build \"src/**/*.ts\" && tsc -b",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\"",
"test": "astro-scripts test \"test/**/*.test.ts\"",
"typecheck:tests": "tsc --build tsconfig.test.json"
"test": "astro-scripts test \"test/**/*.test.ts\""
}
}