mp-weixin-back 0.0.4 → 0.0.5
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/index.cjs +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
- package/src/context.ts +2 -1
package/dist/index.cjs
CHANGED
|
@@ -176,7 +176,8 @@ class pageContext {
|
|
|
176
176
|
this.pages.push(...subPages);
|
|
177
177
|
}
|
|
178
178
|
} catch (error) {
|
|
179
|
-
|
|
179
|
+
console.error("\u8BFB\u53D6pages.json\u6587\u4EF6\u5931\u8D25");
|
|
180
|
+
console.error(error);
|
|
180
181
|
}
|
|
181
182
|
}
|
|
182
183
|
// 获取指定id的page
|
package/dist/index.mjs
CHANGED
|
@@ -167,7 +167,8 @@ class pageContext {
|
|
|
167
167
|
this.pages.push(...subPages);
|
|
168
168
|
}
|
|
169
169
|
} catch (error) {
|
|
170
|
-
|
|
170
|
+
console.error("\u8BFB\u53D6pages.json\u6587\u4EF6\u5931\u8D25");
|
|
171
|
+
console.error(error);
|
|
171
172
|
}
|
|
172
173
|
}
|
|
173
174
|
// 获取指定id的page
|
package/package.json
CHANGED