@baic/yolk-cli 2.1.0-alpha.243 → 2.1.0-alpha.244
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/LICENSE +1 -1
- package/package.json +7 -7
- package/templates/miniprogram/LICENSE +1 -1
- package/templates/umi-mobile/LICENSE +1 -1
- package/templates/umi-mobile-h5+app/LICENSE +1 -1
- package/templates/umi-mobile-native/LICENSE +1 -1
- package/templates/umi-mobile-native/src/common/bluetooth.ts +3 -3
- package/templates/umi-mobile-uni-app/LICENSE +1 -1
- package/templates/umi-web/LICENSE +1 -1
- package/templates/umi-web-screen/LICENSE +1 -1
package/LICENSE
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baic/yolk-cli",
|
|
3
|
-
"version": "2.1.0-alpha.
|
|
3
|
+
"version": "2.1.0-alpha.244",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/303394539/yolk.git"
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"prebundle": "father prebundle"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@baic/biome-config-yolk": "2.1.0-alpha.
|
|
29
|
-
"@baic/eslint-config-yolk": "2.1.0-alpha.
|
|
30
|
-
"@baic/prettier-config-yolk": "2.1.0-alpha.
|
|
31
|
-
"@baic/stylelint-config-yolk": "2.1.0-alpha.
|
|
32
|
-
"@democrance/imagemin-lint-staged": "
|
|
28
|
+
"@baic/biome-config-yolk": "2.1.0-alpha.244",
|
|
29
|
+
"@baic/eslint-config-yolk": "2.1.0-alpha.244",
|
|
30
|
+
"@baic/prettier-config-yolk": "2.1.0-alpha.244",
|
|
31
|
+
"@baic/stylelint-config-yolk": "2.1.0-alpha.244",
|
|
32
|
+
"@democrance/imagemin-lint-staged": "4.0.x",
|
|
33
33
|
"@types/lodash": "4.x",
|
|
34
34
|
"chalk": "4.x",
|
|
35
35
|
"eslint": "8.x",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "4853c96b1a034153663bdec3f2b04fa2a03b10b3"
|
|
65
65
|
}
|
|
@@ -322,15 +322,15 @@ class Bluetooth {
|
|
|
322
322
|
const { bluetooth } = window.plus || {};
|
|
323
323
|
if (this.listenServicesTimeoutId) {
|
|
324
324
|
clearTimeout(this.listenServicesTimeoutId);
|
|
325
|
-
this.listenServicesTimeoutId =
|
|
325
|
+
this.listenServicesTimeoutId = void 0;
|
|
326
326
|
}
|
|
327
327
|
if (this.writeTimeoutId) {
|
|
328
328
|
clearTimeout(this.writeTimeoutId);
|
|
329
|
-
this.writeTimeoutId =
|
|
329
|
+
this.writeTimeoutId = void 0;
|
|
330
330
|
}
|
|
331
331
|
if (this.readTimeoutId) {
|
|
332
332
|
clearTimeout(this.readTimeoutId);
|
|
333
|
-
this.readTimeoutId =
|
|
333
|
+
this.readTimeoutId = void 0;
|
|
334
334
|
}
|
|
335
335
|
try {
|
|
336
336
|
const discovering = await this.isAvailableAdapter();
|