王明
王明
全局global属性名精简 ``` global.__mpxGenericsMap -> global._gm global.currentModuleId -> global._id global.currentCtor -> global._ctor global.currentCtorType -> global._ctorT global.currentResourceType -> global._crt global.currentSrcMode -> global._sm global.currentInject -> global._i global.currentInject.componentPath -> global._i.p global.currentInject.componentsMap -> global._i.cm global.currentInject.pageConfig...
'页面' 或 "开启VirtualHost的组件" 使用多根节点时,RN下存在异常,需要使用Fragment包裹 例如: ```html view1 view2 ``` 将会编译为 ```js __webpack_require__.g.currentInject.render = function (createElement, getComponent) { return createElement(getComponent("mpx-view"), null, createElement(getComponent("mpx-inline-text"), null, "view1")), createElement(getComponent("mpx-view"), null, createElement(getComponent("mpx-inline-text"), null, "view2")); }; ```...
当 defineOptions 存在 ObjectMethod 语法构建报错 ``` TypeError: Cannot read properties of undefined (reading 'start') at compileScriptSetup (/node_modules/@mpxjs/webpack-plugin/lib/script-setup-compiler/index.js:608:51) ``` ```js defineOptions({ ready() {}, // 报错 ready: function (){} // 正常 })...
将`if (isNotExpired && checkCacheConfig(config, cacheRequestData) && cacheRequestData.responsePromise) {}` 修改为先判断`cacheRequestData.responsePromise`,避免在 responsePromise 不存在时调用checkCacheConfig,导致equels回调触发
**To reproduce:** ```styl .e-common-title font-size 30px // Here uses \t indentation .e-font-size2 font-size 24px // Here uses 4 spaces for indentation ``` **Current behavior:** When the first selector uses `\t`...