Fix: 修复 Mixly.Web.SerialPort 中未导入 Mixly.Debug

This commit is contained in:
王立帮
2025-02-22 16:14:39 +08:00
parent 2843d26aef
commit c37d99f630
2 changed files with 3 additions and 0 deletions

View File

@@ -1652,6 +1652,7 @@
"require": [
"Mixly.Serial",
"Mixly.Registry",
"Mixly.Debug",
"Mixly.Web"
],
"provide": [

View File

@@ -2,12 +2,14 @@ goog.loadJs('web', () => {
goog.require('Mixly.Serial');
goog.require('Mixly.Registry');
goog.require('Mixly.Debug');
goog.require('Mixly.Web');
goog.provide('Mixly.Web.SerialPort');
const {
Serial,
Registry,
Debug,
Web
} = Mixly;