Comparing version 0.5.4 to 0.5.5
@@ -16,4 +16,4 @@ export type ClassValue = ClassValue[] | ClassDictionary | string | number | null | boolean | undefined; | ||
export type StringToBoolean<T> = T extends "true" | "false" ? boolean : T; | ||
export type Prettify<T> = { | ||
[K in keyof T]: T[K] extends object ? Prettify<T[K]> : T[K]; | ||
} & {}; | ||
export type Prettify<T> = T extends object ? { | ||
[K in keyof T]: Prettify<T[K]>; | ||
} : T; |
{ | ||
"name": "cvax", | ||
"version": "0.5.4", | ||
"version": "0.5.5", | ||
"description": "Customized CVA. fork 'class-variance-authority'", | ||
@@ -17,4 +17,4 @@ "repository": "https://github.com/alexvyber/cvax.git", | ||
"exports": { | ||
"import": "./dist/index.mjs", | ||
"require": "./dist/index.js", | ||
"import": "./dist/index.esm.js", | ||
"require": "./dist/index.cjs.js", | ||
"types": "./dist/index.d.ts" | ||
@@ -43,2 +43,3 @@ }, | ||
"@types/lodash.isequal": "^4.5.6", | ||
"@vitest/ui": "^0.32.0", | ||
"bundlesize": "^0.18.1", | ||
@@ -45,0 +46,0 @@ "npm-run-all": "4.1.5", |
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
47450
0
9
11
139