@cryptic-css/core
Advanced tools
Comparing version 0.0.9 to 0.0.10
import props from "./props"; | ||
import { pseudoMap } from "./maps"; | ||
@@ -11,4 +10,2 @@ const ccss = v => { | ||
generated += props[k](v[k], v); | ||
} else if (pseudoMap[k]) { | ||
generated += pseudoMap[k](v[k], v); | ||
} | ||
@@ -15,0 +12,0 @@ } |
@@ -0,4 +1,4 @@ | ||
import ccss from "./ccss"; | ||
import options from "./options"; | ||
import { valueMap, pseudoMap } from "./maps"; | ||
import ccss from "./ccss"; | ||
const IS_PROD = process.env.NODE_ENV === 'production'; | ||
@@ -5,0 +5,0 @@ |
{ | ||
"name": "@cryptic-css/core", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "> TODO: description", | ||
@@ -35,3 +35,3 @@ "author": "Viktor Vincze <viktor.vincze@doclerholding.com>", | ||
}, | ||
"gitHead": "09229301644f4834d35568bb6b484fe535b8b38a" | ||
"gitHead": "0dd7066a9b8417ad6c48758c18a3dbbad07221e0" | ||
} |
import { TCCSSCoreProp } from './types' | ||
import props from './props' | ||
import { pseudoMap } from './maps' | ||
@@ -12,4 +11,2 @@ const ccss = (v: TCCSSCoreProp & any): string => { | ||
generated += props[k](v[k], v) | ||
} else if (pseudoMap[k]) { | ||
generated += pseudoMap[k](v[k], v) | ||
} | ||
@@ -16,0 +13,0 @@ } |
@@ -0,4 +1,4 @@ | ||
import ccss from './ccss' | ||
import options from './options' | ||
import { valueMap, pseudoMap } from './maps' | ||
import ccss from './ccss' | ||
@@ -5,0 +5,0 @@ const IS_PROD = process.env.NODE_ENV === 'production' |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1192555
7960