expose-kit 0.2.2 → 0.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -219,7 +219,7 @@ var beautify = (strings, ...values) => {
|
|
|
219
219
|
return result;
|
|
220
220
|
};
|
|
221
221
|
var isNoColor = () => {
|
|
222
|
-
return
|
|
222
|
+
return process.env.NO_COLOR !== void 0 && process.argv.includes("--no-color");
|
|
223
223
|
};
|
|
224
224
|
var calmGradienrain = (text) => {
|
|
225
225
|
if (isNoColor()) {
|
package/dist/package.json
CHANGED