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

@v4fire/typescript-check

Package Overview
Dependencies
Maintainers
8
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@v4fire/typescript-check - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

6

CHANGELOG.md

@@ -14,2 +14,8 @@ Changelog

## v1.3.2 (2021-03-02)
#### :rocket: New Feature
* Improved information about found errors
## v1.3.1 (2020-11-06)

@@ -16,0 +22,0 @@

5

index.js

@@ -84,3 +84,6 @@ #!/usr/bin/env node

if (totalErrors > maxErrors) {
log.setFailed(`Errors found: ${totalErrors}`);
log.setFailed(`Errors found: ${totalErrors}${maxErrors > 0 ? `. Errors allowed: ${maxErrors}` : ''}`);
} else if (maxErrors > 0) {
log.warning(`Errors found: ${totalErrors}. Errors allowed: ${maxErrors}`);
}

2

package.json
{
"name": "@v4fire/typescript-check",
"version": "1.3.1",
"version": "1.3.2",
"description": "Tool to check typescript errors",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/v4fire/typescriptCheck#readme",

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