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

component-builder

Package Overview
Dependencies
Maintainers
21
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

component-builder - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

4

build/builders/scripts.js

@@ -786,6 +786,6 @@

// check by adding extensions
if (f.path === path + extensions[j]) return f.name;
if (f.path.toLowerCase() === path + extensions[j]) return f.name;
}
// check by removing extensions
if (f.path.replace(/\.\w+$/, '') === path) return f.name;
if (f.path.replace(/\.\w+$/, '').toLowerCase() === path) return f.name;
}

@@ -792,0 +792,0 @@

1.0.3 / 2014-01-01
==================
* fix mix-cased `require()`s with mix-cased filenames - https://github.com/component/builder2.js/pull/34
1.0.2 / 2014-01-01

@@ -3,0 +8,0 @@ ==================

@@ -282,6 +282,6 @@

// check by adding extensions
if (f.path === path + extensions[j]) return f.name;
if (f.path.toLowerCase() === path + extensions[j]) return f.name;
}
// check by removing extensions
if (f.path.replace(/\.\w+$/, '') === path) return f.name;
if (f.path.replace(/\.\w+$/, '').toLowerCase() === path) return f.name;
}

@@ -288,0 +288,0 @@

{
"name": "component-builder",
"description": "builder for component",
"version": "1.0.2",
"version": "1.0.3",
"author": {

@@ -6,0 +6,0 @@ "name": "Jonathan Ong",

Sorry, the diff of this file is not supported yet

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