@lowdefy/operators-diff 4.0.0-alpha.6 → 4.0.0-alpha.9
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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright 2020-
|
|
2
|
+
Copyright 2020-2022 Lowdefy, Inc
|
|
3
3
|
|
|
4
4
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
you may not use this file except in compliance with the License.
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
13
|
See the License for the specific language governing permissions and
|
|
14
14
|
limitations under the License.
|
|
15
|
-
*/ import
|
|
15
|
+
*/ import deepDiff from 'deep-diff';
|
|
16
16
|
import { runClass } from '@lowdefy/operators';
|
|
17
17
|
function deep(lhs, rhs) {
|
|
18
|
-
const result = diff(lhs, rhs);
|
|
18
|
+
const result = deepDiff.diff(lhs, rhs);
|
|
19
19
|
if (!result) {
|
|
20
20
|
return [];
|
|
21
21
|
}
|
package/dist/operatorsClient.js
CHANGED
package/dist/operatorsServer.js
CHANGED
package/dist/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowdefy/operators-diff",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.9",
|
|
4
4
|
"licence": "Apache-2.0",
|
|
5
5
|
"description": "",
|
|
6
6
|
"homepage": "https://lowdefy.com",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"lowdefy",
|
|
9
|
-
"lowdefy operator"
|
|
9
|
+
"lowdefy operator",
|
|
10
|
+
"lowdefy plugin"
|
|
10
11
|
],
|
|
11
12
|
"bugs": {
|
|
12
13
|
"url": "https://github.com/lowdefy/lowdefy/issues"
|
|
@@ -42,18 +43,18 @@
|
|
|
42
43
|
"test": "jest --coverage"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@lowdefy/helpers": "4.0.0-alpha.
|
|
46
|
-
"@lowdefy/operators": "4.0.0-alpha.
|
|
46
|
+
"@lowdefy/helpers": "4.0.0-alpha.9",
|
|
47
|
+
"@lowdefy/operators": "4.0.0-alpha.9",
|
|
47
48
|
"deep-diff": "1.0.2"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"@swc/cli": "0.1.55",
|
|
51
|
-
"@swc/core": "1.2.
|
|
52
|
+
"@swc/core": "1.2.135",
|
|
52
53
|
"@swc/jest": "0.2.17",
|
|
53
|
-
"jest": "27.
|
|
54
|
+
"jest": "27.5.1"
|
|
54
55
|
},
|
|
55
56
|
"publishConfig": {
|
|
56
57
|
"access": "public"
|
|
57
58
|
},
|
|
58
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "98b544eca231bdcfca6c3a8601a891835d5ce571"
|
|
59
60
|
}
|