@carbon/colors
Advanced tools
Comparing version 0.0.1-alpha.3 to 0.0.1-alpha.4
{ | ||
"name": "@carbon/colors", | ||
"version": "0.0.1-alpha.3", | ||
"version": "0.0.1-alpha.4", | ||
"main": "src/index.js", | ||
@@ -18,3 +18,3 @@ "license": "Apache-2.0", | ||
"devDependencies": { | ||
"@carbon/cli-reporter": "0.0.1-alpha.3", | ||
"@carbon/cli-reporter": "0.0.1-alpha.4", | ||
"fs-extra": "^7.0.0", | ||
@@ -21,0 +21,0 @@ "node-sass": "^4.9.4", |
@@ -104,5 +104,9 @@ 'use strict'; | ||
if (character === character.toUpperCase()) { | ||
parts.push(currentPart); | ||
currentPart = character.toLowerCase(); | ||
prevCharacter = character.toLowerCase(); | ||
if (prevCharacter !== prevCharacter.toUpperCase()) { | ||
parts.push(currentPart); | ||
currentPart = character.toLowerCase(); | ||
} else { | ||
currentPart += character.toLowerCase(); | ||
} | ||
prevCharacter = character; | ||
continue; | ||
@@ -109,0 +113,0 @@ } |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
17171
271
0