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.3.31 to 0.3.32

20

shelljs/index.d.ts

@@ -511,2 +511,22 @@ // Type definitions for ShellJS v0.3.0

export declare function touch(...files: string[]): void;
export declare function touch(files: string[]): void;
type TouchOptionsLiteral = "-a" | "-c" | "-m" | "-d" | "-r";
export declare function touch(options: TouchOptionsLiteral, ...files: string[]): void;
export declare function touch(options: TouchOptionsLiteral, files: string[]): void;
/**
* Update the access and modification times of each FILE to the current time. A FILE argument that does not exist is created empty, unless -c is supplied
*/
type touchOptionsArray = {
'-d'?: string;
'-r'?: string;
};
export declare function touch(options: touchOptionsArray, ...files: string[]): void;
export declare function touch(options: touchOptionsArray, files: string[]): void;
// Configuration

@@ -513,0 +533,0 @@

5

shelljs/package.json
{
"name": "@types/shelljs",
"version": "0.3.31",
"version": "0.3.32",
"description": "TypeScript definitions for ShellJS v0.3.0",

@@ -16,4 +16,5 @@ "license": "MIT",

},
"peerDependencies": {},
"typings": "index.d.ts",
"typesPublisherContentHash": "cdaa053e93624ce4d968f28dab2dcd831c4ef4f95499619a7d57177f24eb67e7"
"typesPublisherContentHash": "6f2fa447fe182c1b20c83f60a4c352797978b6d32139b2b005fbe4c5bdc79fc4"
}

2

shelljs/README.md

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

Additional Details
* Last updated: Mon, 19 Sep 2016 17:28:59 GMT
* Last updated: Wed, 05 Oct 2016 20:53:40 GMT
* File structure: ProperModule

@@ -14,0 +14,0 @@ * Library Dependencies: node

@@ -26,3 +26,3 @@ {

"hasPackageJson": false,
"contentHash": "cdaa053e93624ce4d968f28dab2dcd831c4ef4f95499619a7d57177f24eb67e7"
"contentHash": "6f2fa447fe182c1b20c83f60a4c352797978b6d32139b2b005fbe4c5bdc79fc4"
}
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