Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@parcel/types-internal

Package Overview
Dependencies
Maintainers
1
Versions
162
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@parcel/types-internal - npm Package Compare versions

Comparing version 2.12.1-dev.3335 to 2.13.0

4

lib/FileSystem.d.ts

@@ -49,2 +49,4 @@ import type { FilePath } from "./FilePath";

statSync(filePath: FilePath): Stats;
lstat(filePath: FilePath): Promise<Stats>;
lstatSync(filePath: FilePath): Stats;
readdir(path: FilePath, opts?: {

@@ -66,2 +68,4 @@ withFileTypes?: false;

realpathSync(path: FilePath): FilePath;
readlink(path: FilePath): Promise<FilePath>;
readlinkSync(path: FilePath): FilePath;
exists(path: FilePath): Promise<boolean>;

@@ -68,0 +72,0 @@ existsSync(path: FilePath): boolean;

8

package.json
{
"name": "@parcel/types-internal",
"version": "2.12.1-dev.3335+c6bc8e411",
"version": "2.13.0",
"license": "MIT",

@@ -19,8 +19,8 @@ "main": "src/index.js",

"dependencies": {
"@parcel/diagnostic": "2.0.0-dev.1712+c6bc8e411",
"@parcel/feature-flags": "2.12.1-dev.3335+c6bc8e411",
"@parcel/diagnostic": "2.13.0",
"@parcel/feature-flags": "2.13.0",
"@parcel/source-map": "^2.1.1",
"utility-types": "^3.10.0"
},
"gitHead": "c6bc8e41105247c437089ec3cb91e53f12ac5519"
"gitHead": "a53f8f3ba1025c7ea8653e9719e0a61ef9717079"
}

@@ -73,2 +73,4 @@ // @flow

statSync(filePath: FilePath): Stats;
lstat(filePath: FilePath): Promise<Stats>;
lstatSync(filePath: FilePath): Stats;
readdir(

@@ -85,2 +87,4 @@ path: FilePath,

realpathSync(path: FilePath): FilePath;
readlink(path: FilePath): Promise<FilePath>;
readlinkSync(path: FilePath): FilePath;
exists(path: FilePath): Promise<boolean>;

@@ -87,0 +91,0 @@ existsSync(path: FilePath): boolean;

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

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

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