Socket
Socket
Sign inDemoInstall

@types/shelljs

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/shelljs - npm Package Compare versions

Comparing version 0.7.8 to 0.7.9

21

shelljs/index.d.ts

@@ -5,2 +5,3 @@ // Type definitions for ShellJS 0.7

// Vojtech Jasny <https://github.com/voy>
// George Kalpakas <https://github.com/gkalpak>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

@@ -389,2 +390,12 @@

* - There is no "quiet" option since default behavior is to run silent.
* @param options Available options: -v (output a diagnostic for every file processed), -c (like -v but report only when a change is made), -R (change files and directories recursively)
* @param octalMode The access mode. Octal.
* @param file The file to use.
*/
export function chmod(options: string, octalMode: number, file: string): void;
/**
* Alters the permissions of a file or directory by either specifying the absolute permissions in octal form or expressing the changes in symbols. This command tries to mimic the POSIX behavior as much as possible. Notable exceptions:
* - In symbolic modes, 'a-r' and '-r' are identical. No consideration is given to the umask.
* - There is no "quiet" option since default behavior is to run silent.
* @param mode The access mode. Can be an octal string or a symbolic mode string.

@@ -395,2 +406,12 @@ * @param file The file to use.

/**
* Alters the permissions of a file or directory by either specifying the absolute permissions in octal form or expressing the changes in symbols. This command tries to mimic the POSIX behavior as much as possible. Notable exceptions:
* - In symbolic modes, 'a-r' and '-r' are identical. No consideration is given to the umask.
* - There is no "quiet" option since default behavior is to run silent.
* @param options Available options: -v (output a diagnostic for every file processed), -c (like -v but report only when a change is made), -R (change files and directories recursively)
* @param mode The access mode. Can be an octal string or a symbolic mode string.
* @param file The file to use.
*/
export function chmod(options: string, mode: string, file: string): void;
// Non-Unix commands

@@ -397,0 +418,0 @@

9

shelljs/package.json
{
"name": "@types/shelljs",
"version": "0.7.8",
"version": "0.7.9",
"description": "TypeScript definitions for ShellJS",

@@ -16,2 +16,7 @@ "license": "MIT",

"githubUsername": "voy"
},
{
"name": "George Kalpakas",
"url": "https://github.com/gkalpak",
"githubUsername": "gkalpak"
}

@@ -29,4 +34,4 @@ ],

},
"typesPublisherContentHash": "f47e155f74f1154a43e563354099184bf90b032de4b8d95a35a4513760c6b445",
"typesPublisherContentHash": "8e4f7761a447548df6319e87d5483c761b22a4f47b716701a1df53967b4f8107",
"typeScriptVersion": "2.0"
}

@@ -11,3 +11,3 @@ # Installation

Additional Details
* Last updated: Thu, 01 Feb 2018 18:55:42 GMT
* Last updated: Mon, 30 Apr 2018 16:18:31 GMT
* Dependencies: child_process, glob, node

@@ -17,2 +17,2 @@ * Global values: none

# Credits
These definitions were written by Niklas Mollenhauer <https://github.com/nikeee>, Vojtech Jasny <https://github.com/voy>.
These definitions were written by Niklas Mollenhauer <https://github.com/nikeee>, Vojtech Jasny <https://github.com/voy>, George Kalpakas <https://github.com/gkalpak>.

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc