New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

flow-src

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flow-src - npm Package Compare versions

Comparing version 0.0.7 to 0.0.9

1

build/index.js

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

result.errors = filter(result.errors);
code = result.errors.length ? 0 : code;
}

@@ -71,0 +72,0 @@

2

package.json
{
"name": "flow-src",
"description": "Flow typing that ignores /node_modules/ ",
"version": "0.0.7",
"version": "0.0.9",
"keywords": ["flow", "flowtype", "filter", "ignore", "node_modules"],

@@ -6,0 +6,0 @@ "scripts": {

@@ -6,8 +6,8 @@ // @flow

const [code, errors] = FlowSrcSync(...args);
const [code, result] = FlowSrcSync(...args);
if (errors) {
process.stderr.write(beautify(errors));
if (result) {
process.stderr.write(beautify(result));
}
process.exit(code);
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