Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

include-all

Package Overview
Dependencies
Maintainers
3
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

include-all - npm Package Compare versions

Comparing version 1.0.6 to 1.0.7

9

lib/help-build-dictionary.js

@@ -5,2 +5,3 @@ /**

var path = require('path');
var _ = require('lodash');

@@ -92,2 +93,10 @@ var helpIncludeAllSync = require('./help-include-all-sync');

// Ensure that the identity and globalId always use forward slashes ("/") for their
// path separators, even on Windows. This is so that identities are more clean and
// predictable.
// (see https://nodejs.org/dist/latest-v0.10.x/docs/api/path.html#path_path_sep)
if (path.sep === '\\') {
module.identity = module.identity.replace(/\\/g, '/');
}
// globalId is the name of the variable for this module

@@ -94,0 +103,0 @@ // that e.g. will be exposed globally in Sails unless configured otherwise.

2

package.json
{
"name": "include-all",
"version": "1.0.6",
"version": "1.0.7",
"description": "An easy way to include all node.js modules within a directory.",

@@ -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