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 3.0.0-rc.1 to 3.0.0-rc.2

4

package.json
{
"name": "@travetto/base",
"displayName": "Base",
"version": "3.0.0-rc.1",
"version": "3.0.0-rc.2",
"description": "Application phase management, environment config and common utilities for travetto applications.",

@@ -34,3 +34,3 @@ "keywords": [

"peerDependencies": {
"@travetto/cli": "^3.0.0-rc.1"
"@travetto/cli": "^3.0.0-rc.2"
},

@@ -37,0 +37,0 @@ "peerDependenciesMeta": {

@@ -60,4 +60,8 @@ import * as fs from 'fs/promises';

*/
addPath(searchPath: string): void {
this.#paths.push(PathUtil.resolveUnix(searchPath));
addPath(searchPath: string, index = -1): void {
if (index < 0) {
this.#paths.push(PathUtil.resolveUnix(searchPath));
} else {
this.#paths.splice(index, 0, PathUtil.resolveUnix(searchPath));
}
}

@@ -64,0 +68,0 @@

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