expose-kit 0.10.3 → 0.10.4
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/dist/index.js +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2218,7 +2218,7 @@ var calmGradienrain = (text) => {
|
|
|
2218
2218
|
}).join("");
|
|
2219
2219
|
};
|
|
2220
2220
|
var showCredit = (VERSION, update) => beautify`
|
|
2221
|
-
${calmGradienrain(`Expose Kit v${VERSION}`)} ${update ? `(Update available: v${update.latest})` : ""}
|
|
2221
|
+
${calmGradienrain(`Expose Kit v${VERSION}`)} ${update && update.latest !== VERSION ? `(Update available: v${update.latest})` : ""}
|
|
2222
2222
|
`;
|
|
2223
2223
|
|
|
2224
2224
|
// index.ts
|
package/dist/package.json
CHANGED