@tarojs/extend 3.5.0-alpha.7 → 3.5.0-beta.0
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/package.json +2 -2
- package/src/jquery/zepto.js +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/extend",
|
|
3
|
-
"version": "3.5.0-
|
|
3
|
+
"version": "3.5.0-beta.0",
|
|
4
4
|
"description": "Taro extend functionality",
|
|
5
5
|
"author": "yuche <i@yuche.me>",
|
|
6
6
|
"homepage": "https://github.com/nervjs/taro/tree/master/packages/taro-extend#readme",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"publishConfig": {
|
|
25
25
|
"access": "public"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "ee17506905a260bacd1aa6217a2376ba7bb8200f"
|
|
28
28
|
}
|
package/src/jquery/zepto.js
CHANGED
|
@@ -9,10 +9,11 @@
|
|
|
9
9
|
// Zepto.js
|
|
10
10
|
// (c) 2010-2017 Thomas Fuchs
|
|
11
11
|
// Zepto.js may be freely distributed under the MIT license.
|
|
12
|
-
import Taro from '@tarojs/taro'
|
|
13
12
|
import { window } from '@tarojs/runtime'
|
|
14
|
-
import
|
|
13
|
+
import Taro from '@tarojs/taro'
|
|
14
|
+
|
|
15
15
|
import { initEvent } from './event'
|
|
16
|
+
import { Sizzle } from './sizzle'
|
|
16
17
|
|
|
17
18
|
export const Zepto = (function () {
|
|
18
19
|
let undefined; let key; let $; let classList; const emptyArray = []; const concat = emptyArray.concat; const filter = emptyArray.filter; const slice = emptyArray.slice
|