@mpxjs/core 2.8.0 → 2.8.2
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mpxjs/core",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.2",
|
|
4
4
|
"description": "mpx runtime core",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"miniprogram",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"main": "src/index.js",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@mpxjs/utils": "^2.8.
|
|
22
|
+
"@mpxjs/utils": "^2.8.2",
|
|
23
23
|
"lodash": "^4.1.1",
|
|
24
24
|
"miniprogram-api-typings": "^3.0.2"
|
|
25
25
|
},
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"url": "https://github.com/didi/mpx/issues"
|
|
48
48
|
},
|
|
49
49
|
"sideEffects": false,
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "002bf2a6960d5bab86b7774e81386ce4e74cd8dc"
|
|
51
51
|
}
|
package/src/observer/array.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { CREATED, BEFORECREATE, BEFOREUPDATE, UNMOUNTED } from '../../core/innerLifecycle'
|
|
2
|
-
import { noop, error } from '@mpxjs/utils'
|
|
3
|
-
import { getEnvObj } from '@mpxjs/utils/src/env'
|
|
2
|
+
import { noop, error, getEnvObj } from '@mpxjs/utils'
|
|
4
3
|
|
|
5
4
|
const envObj = getEnvObj()
|
|
6
5
|
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import transferOptions from '../core/transferOptions'
|
|
2
2
|
import mergeOptions from '../core/mergeOptions'
|
|
3
3
|
import builtInKeysMap from './patch/builtInKeysMap'
|
|
4
|
-
import { spreadProp } from '@mpxjs/utils'
|
|
5
|
-
import { makeMap } from '@mpxjs/utils/src/array'
|
|
4
|
+
import { makeMap, spreadProp } from '@mpxjs/utils'
|
|
6
5
|
import * as webLifecycle from '../platform/patch/web/lifecycle'
|
|
7
6
|
import Mpx from '../index'
|
|
8
7
|
|