-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
9,900 additions
and
9,981 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
/** @type import('haoma').JestConfig */ | ||
module.exports = require('haoma').getJestConfig({ | ||
transformPackages: [ | ||
'lodash-es', | ||
'date-fns', | ||
'yup', | ||
'@babel/runtime', | ||
'@tarojs/runtime', | ||
], | ||
testEnvironment: 'jsdom', | ||
transformPackages: ['lodash-es', 'date-fns', 'yup', '@tarojs/runtime'], | ||
transformer: 'babel', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
diff --git a/node_modules/@tarojs/taro/types/api/cloud/index.d.ts b/node_modules/@tarojs/taro/types/api/cloud/index.d.ts | ||
index f30ea1c..231dd3e 100644 | ||
--- a/node_modules/@tarojs/taro/types/api/cloud/index.d.ts | ||
+++ b/node_modules/@tarojs/taro/types/api/cloud/index.d.ts | ||
@@ -1877,62 +1877,62 @@ declare namespace Taro { | ||
/** 逻辑命令字面量 */ | ||
interface LOGIC_COMMANDS_LITERAL { | ||
/** 与 */ | ||
- and | ||
+ and: any | ||
/** 或 */ | ||
- or | ||
+ or: any | ||
/** 非 */ | ||
- not | ||
+ not: any | ||
/** 都不 */ | ||
- nor | ||
+ nor: any | ||
} | ||
|
||
/** 查询命令字面量 */ | ||
interface QUERY_COMMANDS_LITERAL { | ||
// normal | ||
/** 等于 */ | ||
- eq | ||
+ eq: any | ||
/** 不等于 */ | ||
- neq | ||
+ neq: any | ||
/** 大于 */ | ||
- gt | ||
+ gt: any | ||
/** 大于等于 */ | ||
- gte | ||
+ gte: any | ||
/** 小于 */ | ||
- lt | ||
+ lt: any | ||
/** 小于等于 */ | ||
- lte | ||
+ lte: any | ||
/** 范围内 */ | ||
- in | ||
+ in: any | ||
/** 范围外 */ | ||
- nin | ||
+ nin: any | ||
|
||
// geo | ||
/** 附近排序 */ | ||
- geoNear | ||
+ geoNear: any | ||
/** 指定区域内 */ | ||
- geoWithin | ||
+ geoWithin: any | ||
/** 相交区域 */ | ||
- geoIntersects | ||
+ geoIntersects: any | ||
} | ||
|
||
/** 更新命令字面量 */ | ||
interface UPDATE_COMMANDS_LITERAL { | ||
/** 等于 */ | ||
- set | ||
+ set: any | ||
/** 删除 */ | ||
- remove | ||
+ remove: any | ||
/** 自增 */ | ||
- inc | ||
+ inc: any | ||
/** 自乘 */ | ||
- mul | ||
+ mul: any | ||
/** 尾部添加 */ | ||
- push | ||
+ push: any | ||
/** 尾部删除 */ | ||
- pop | ||
+ pop: any | ||
/** 头部删除 */ | ||
- shift | ||
+ shift: any | ||
/** 头部添加 */ | ||
- unshift | ||
+ unshift: any | ||
} | ||
|
||
/** 按从近到远的顺序,找出字段值在给定点的附近的记录参数 */ |
Oops, something went wrong.