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

@travetto/base

Package Overview
Dependencies
Maintainers
1
Versions
357
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/base - npm Package Compare versions

Comparing version 0.0.91 to 0.0.92

4

bin/travetto.js

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

for (const f of fs.readdirSync(CACHE_DIR)) {
const full = f.replace(CACHE_SEP_RE, '/');
const full = f.replace(CACHE_SEP_RE, '/').replace('@', '.');
const rel = `${CACHE_DIR}/${f}`;

@@ -37,3 +37,3 @@ const stat = LOADED[rel] = fs.statSync(rel);

require.extensions['.ts'] = function load(m, tsf) {
const name = `${CACHE_DIR}/${tsf.replace(/[\/\\]/g, CACHE_SEP)}`;
const name = `${CACHE_DIR}/${tsf.replace(/[\/\\]/g, CACHE_SEP).replace(/.ts$/, '@ts')}`;
let content;

@@ -40,0 +40,0 @@ if (!LOADED[name]) {

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

"scripts": {},
"version": "0.0.91"
"version": "0.0.92"
}

@@ -6,3 +6,3 @@ import * as util from 'util';

import { Entry, Handler, bulkFindSync } from './scan-fs';
import { throttle } from '.';
import { throttle } from './util';

@@ -9,0 +9,0 @@ interface Options {

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