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

fepper-utils

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fepper-utils - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4-rc.0

10

index.js

@@ -410,4 +410,5 @@ 'use strict';

* Normalize UI config values.
* Turn relative paths into absolute paths.
* Prepend leading dots to extnames if necessary.
* Strip leading dot+slashes and trailing slashes from relative paths and save.
* Turn relative paths into absolute paths and save.
* Prepend leading dots to extension nnames if necessary.
*

@@ -431,2 +432,5 @@ * @param {object} uiObj - The UI configuration object.

// gulp.watch() will not trigger on file creation if watching an absolute path, so save normalized relative paths.
uiObj.pathsRelative = uiObj.pathsRelative || {source: {}, public: {}};
for (let i in pathsPublic) {

@@ -448,2 +452,3 @@ if (!pathsPublic.hasOwnProperty(i)) {

if (pathsPublic[i].indexOf(workDir) !== 0) {
uiObj.pathsRelative.public[i] = pathPublic;
pathsPublic[i] = `${workDir}/${pathPublic}`;

@@ -469,2 +474,3 @@ }

if (pathsSource[i].indexOf(workDir) !== 0) {
uiObj.pathsRelative.source[i] = pathSource;
pathsSource[i] = `${workDir}/${pathSource}`;

@@ -471,0 +477,0 @@ }

2

package.json
{
"name": "fepper-utils",
"version": "1.0.3",
"version": "1.0.4-rc.0",
"description": "Fepper utilities",

@@ -5,0 +5,0 @@ "main": "index.js",

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