Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@computesdk/cmd

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@computesdk/cmd - npm Package Compare versions

Comparing version
0.4.0
to
0.4.1
+2
-0
dist/index.cjs

@@ -165,2 +165,3 @@ "use strict";

cat: () => cat,
cd: () => cd,
chmod: () => chmod,

@@ -222,2 +223,3 @@ chown: () => chown,

var pwd = () => ["pwd"];
var cd = (path) => ["cd", path];
var chmod = (mode, path, options) => {

@@ -224,0 +226,0 @@ return options?.recursive ? ["chmod", "-R", mode, path] : ["chmod", mode, path];

@@ -472,2 +472,3 @@ /**

pwd: () => Command;
cd: (path: string) => Command;
chmod: (mode: string, path: string, options?: {

@@ -474,0 +475,0 @@ recursive?: boolean;

@@ -472,2 +472,3 @@ /**

pwd: () => Command;
cd: (path: string) => Command;
chmod: (mode: string, path: string, options?: {

@@ -474,0 +475,0 @@ recursive?: boolean;

@@ -65,2 +65,3 @@ var __defProp = Object.defineProperty;

cat: () => cat,
cd: () => cd,
chmod: () => chmod,

@@ -122,2 +123,3 @@ chown: () => chown,

var pwd = () => ["pwd"];
var cd = (path) => ["cd", path];
var chmod = (mode, path, options) => {

@@ -124,0 +126,0 @@ return options?.recursive ? ["chmod", "-R", mode, path] : ["chmod", mode, path];

+1
-1
{
"name": "@computesdk/cmd",
"version": "0.4.0",
"version": "0.4.1",
"type": "module",

@@ -5,0 +5,0 @@ "description": "Type-safe shell command builders for ComputeSDK sandboxes",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display