New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@cloud-cli/cli

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cloud-cli/cli - npm Package Compare versions

Comparing version
1.9.6
to
1.9.7
+5
-0
dist/storage.js

@@ -20,5 +20,7 @@ import { mkdirSync } from 'node:fs';

const has = (key) => {
load();
return computeKey(key) in store;
};
const set = (key, value) => {
load();
store[computeKey(key)] = value;

@@ -34,2 +36,3 @@ save();

const update = (key, values) => {
load();
const previous = get(key);

@@ -42,5 +45,7 @@ const next = Object.assign({}, previous, values);

const getAll = () => {
load();
return Object.values(store);
};
const remove = (key) => {
load();
delete store[computeKey(key)];

@@ -47,0 +52,0 @@ save();

+1
-1
{
"name": "@cloud-cli/cli",
"version": "1.9.6",
"version": "1.9.7",
"description": "CLI for the Cloud CLI project",

@@ -5,0 +5,0 @@ "main": "./dist/index.js",