@cobalt-ui/utils
Advanced tools
Comparing version 0.5.1 to 0.5.2
# @cobalt-ui/utils | ||
## 0.5.2 | ||
### Patch Changes | ||
- 9edc9d9: Fix token.\_original.$extensions.modes shallow clone bug | ||
## 0.5.1 | ||
@@ -4,0 +10,0 @@ |
@@ -1,2 +0,2 @@ | ||
export const COLOR_ENABLED = !process.env.NODE_DISABLE_COLORS && (!process.env.NO_COLOR || process.env.NO_COLOR == "0"); | ||
export const COLOR_ENABLED = typeof process !== undefined ? !process.env.NODE_DISABLE_COLORS && (!process.env.NO_COLOR || process.env.NO_COLOR == "0") : true; | ||
export const RESET = COLOR_ENABLED ? '\u001b[0m' : ''; | ||
@@ -3,0 +3,0 @@ export const BOLD = COLOR_ENABLED ? '\u001b[1m' : ''; |
export * from './ansi.js'; | ||
export * from './indent.js'; | ||
export * from './string.js'; | ||
export * from './object.js'; | ||
export * from './token.js'; |
export * from './ansi.js'; | ||
export * from './indent.js'; | ||
export * from './string.js'; | ||
export * from './object.js'; | ||
export * from './token.js'; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@cobalt-ui/utils", | ||
"description": "Generic codegen utilities", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Drew Powers", |
@@ -1,2 +0,2 @@ | ||
export const COLOR_ENABLED = !process.env.NODE_DISABLE_COLORS && (!process.env.NO_COLOR || process.env.NO_COLOR == "0"); | ||
export const COLOR_ENABLED = typeof process !== undefined ? !process.env.NODE_DISABLE_COLORS && (!process.env.NO_COLOR || process.env.NO_COLOR == "0") : true; | ||
@@ -3,0 +3,0 @@ export const RESET = COLOR_ENABLED ? '\u001b[0m' : ''; |
export * from './ansi.js'; | ||
export * from './indent.js'; | ||
export * from './string.js'; | ||
export * from './object.js'; | ||
export * from './token.js'; |
Sorry, the diff of this file is not supported yet
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
16848
28
240