component-builder
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
655401