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

buoy-config

Package Overview
Dependencies
Maintainers
9
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

buoy-config - npm Package Compare versions

Comparing version 4.0.19-alpha.1 to 4.0.19-alpha.2

4

dist/utils.js

@@ -218,7 +218,7 @@ 'use strict';

var buildLegal = exports.buildLegal = function buildLegal(legalItems) {
var buildLegal = exports.buildLegal = function buildLegal(legalItems, baseUrl) {
var legal = [];
for (var i = 0; i < legalItems.length; i++) {
var link = replaceLinkReference(legalItems[i]);
link.href = getAbsoluteUrl(link.href, config.baseUrl);
link.href = getAbsoluteUrl(link.href, baseUrl);
legal.push(link);

@@ -225,0 +225,0 @@ }

{
"name": "buoy-config",
"version": "4.0.19-alpha.1",
"version": "4.0.19-alpha.2",
"description": "Common configuration files for Buoy clients",

@@ -13,3 +13,3 @@ "main": "dist/index.js",

},
"gitHead": "70bb2de3c0445d8696f31465509f51f90c16574e"
"gitHead": "c3e7e8e124ce769fc728edbaef0ab5d5fff3cdfa"
}

@@ -188,7 +188,7 @@ import navConfig from "./configurations/nav.json"

export const buildLegal = (legalItems) => {
export const buildLegal = (legalItems, baseUrl) => {
let legal = []
for (let i = 0; i < legalItems.length; i++) {
let link = replaceLinkReference(legalItems[i])
link.href = getAbsoluteUrl(link.href, config.baseUrl)
link.href = getAbsoluteUrl(link.href, baseUrl)
legal.push(link)

@@ -195,0 +195,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