New:Socket for Asana Is Now Available.Learn more
Get Started

boostmyagent

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boostmyagent - npm Package Compare versions

Comparing version
1.0.24
to
1.0.25
+14
-3
dist/index.js

@@ -23,3 +23,3 @@ #!/usr/bin/env node

const CORE_LAYERS = new Set(["os"]);
const CLI_VERSION = "1.0.24";
const CLI_VERSION = "1.0.25";
function detectHiddenWorktree(cwd = process.cwd()) {

@@ -571,2 +571,3 @@ const resolved = resolve(cwd);

const machineId = await ensureMachineId();
const priorConfig = await readConfig();
const config = {

@@ -579,2 +580,6 @@ apiBase: API_BASE,

target: target.resolved,
// Settings that outlive any single project install must survive
// reinstalls — building the config from scratch here previously wiped
// the telemetry opt-in.
telemetry: priorConfig?.telemetry,
};

@@ -625,4 +630,10 @@ const installed = await installZip(zip, config, release.version);

console.log("");
console.log("Telemetry is off. To help improve Boost OS by counting which commands run");
console.log("(never their arguments, paths, or file contents): npx -y boostmyagent telemetry on");
if (config.telemetry === true) {
console.log("Telemetry is on: Boost OS counts which commands run (never their arguments,");
console.log("paths, or file contents). Turn it off with: npx -y boostmyagent telemetry off");
}
else {
console.log("Telemetry is off. To help improve Boost OS by counting which commands run");
console.log("(never their arguments, paths, or file contents): npx -y boostmyagent telemetry on");
}
console.log("");

@@ -629,0 +640,0 @@ }

+1
-1
{
"name": "boostmyagent",
"version": "1.0.24",
"version": "1.0.25",
"description": "Installer and updater for Boost OS.",

@@ -5,0 +5,0 @@ "homepage": "https://boostmyagent.com",