uloop-cli 0.48.0 → 0.48.2
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/cli.bundle.cjs +3 -3
- package/dist/cli.bundle.cjs.map +2 -2
- package/package.json +1 -1
- package/src/default-tools.json +1 -1
- package/src/execute-tool.ts +1 -1
- package/src/version.ts +1 -1
package/package.json
CHANGED
package/src/default-tools.json
CHANGED
package/src/execute-tool.ts
CHANGED
|
@@ -111,7 +111,7 @@ function printVersionWarning(cliVersion: string, serverVersion: string): void {
|
|
|
111
111
|
* Check server version from response and print warning if mismatched.
|
|
112
112
|
*/
|
|
113
113
|
function checkServerVersion(result: Record<string, unknown>): void {
|
|
114
|
-
const serverVersion = result['
|
|
114
|
+
const serverVersion = result['Ver'] as string | undefined;
|
|
115
115
|
if (serverVersion && serverVersion !== VERSION) {
|
|
116
116
|
printVersionWarning(VERSION, serverVersion);
|
|
117
117
|
}
|
package/src/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
* This file exists to avoid bundling the entire package.json into the CLI bundle.
|
|
5
5
|
* This version is automatically updated by release-please.
|
|
6
6
|
*/
|
|
7
|
-
export const VERSION = '0.48.
|
|
7
|
+
export const VERSION = '0.48.2'; // x-release-please-version
|