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

@travetto/compiler

Package Overview
Dependencies
Maintainers
1
Versions
307
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/compiler - npm Package Compare versions

Comparing version 0.0.29 to 0.0.30

2

package.json

@@ -22,3 +22,3 @@ {

"scripts": {},
"version": "0.0.29"
"version": "0.0.30"
}

@@ -32,5 +32,6 @@ import * as ts from 'typescript';

if (ident && ident.escapedText in patterns) {
const { path } = state.imports.get(ident.escapedText! as string)!;
const res = state.imports.get(ident.escapedText! as string)!;
const path = res && res.path;
const packages = patterns[ident.escapedText as string];
if (path.includes('@travetto') || (!path.includes('node_modules') && AppInfo.PACKAGE === '@travetto')) {
if (path && (path.includes('@travetto') || (!path.includes('node_modules') && AppInfo.PACKAGE === '@travetto'))) {
let pkg = '';

@@ -37,0 +38,0 @@ if (!path.includes('node_modules')) {

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