@my-life-buddies/cli 0.16.0 → 0.17.0
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 +7 -3
- package/dist/bin/buddy.js +214 -35
- package/dist/bin/buddy.js.map +4 -4
- package/dist/bin/core.js +16 -7
- package/dist/bin/core.js.map +3 -3
- package/dist/web/app.js +1 -1
- package/package.json +3 -3
package/dist/web/app.js
CHANGED
|
@@ -794,7 +794,7 @@
|
|
|
794
794
|
class: "pairing-qr", src: pairing.qrCodeDataUrl, width: "256", height: "256", alt: "打开当前开发版搭子的二维码",
|
|
795
795
|
}));
|
|
796
796
|
copy.append(node("p", { class: "pairing-status" }, "真机入口已准备好"));
|
|
797
|
-
copy.append(node("p", { class: "pairing-hint" }, "使用支持 App 链接的扫码工具打开。手机需安装支持预览入口的搭搭 App
|
|
797
|
+
copy.append(node("p", { class: "pairing-hint" }, "使用支持 App 链接的扫码工具打开。手机需安装支持预览入口的搭搭 App,并登录同一创造者账号。"));
|
|
798
798
|
if (pairing.code) copy.append(node("p", { class: "pairing-code" }, pairing.code));
|
|
799
799
|
const link = node("a", { class: "pairing-link", href: pairing.url }, pairing.url);
|
|
800
800
|
copy.append(link);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@my-life-buddies/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "搭搭 Developer Platform 命令行工具",
|
|
6
6
|
"publishConfig": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"ws": "8.21.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@buddy/cli-core": "0.
|
|
43
|
-
"@buddy/preview": "0.
|
|
42
|
+
"@buddy/cli-core": "0.17.0",
|
|
43
|
+
"@buddy/preview": "0.17.0"
|
|
44
44
|
}
|
|
45
45
|
}
|