ast-compare 3.0.6 → 3.0.7
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/ast-compare.esm.js +1 -1
- package/dist/ast-compare.umd.js +4 -4
- package/package.json +10 -10
package/dist/ast-compare.esm.js
CHANGED
package/dist/ast-compare.umd.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name ast-compare
|
|
3
3
|
* @fileoverview Compare anything: AST, objects, arrays, strings and nested thereof
|
|
4
|
-
* @version 3.0.
|
|
4
|
+
* @version 3.0.7
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/ast-compare/}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
/**
|
|
12
12
|
* @name ast-monkey-util
|
|
13
13
|
* @fileoverview Utility library of AST helper functions
|
|
14
|
-
* @version 2.0.
|
|
14
|
+
* @version 2.0.7
|
|
15
15
|
* @author Roy Revelt, Codsen Ltd
|
|
16
16
|
* @license MIT
|
|
17
17
|
* {@link https://codsen.com/os/ast-monkey-util/}
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
/**
|
|
20
20
|
* @name ast-monkey-traverse
|
|
21
21
|
* @fileoverview Utility library to traverse AST
|
|
22
|
-
* @version 3.0.
|
|
22
|
+
* @version 3.0.7
|
|
23
23
|
* @author Roy Revelt, Codsen Ltd
|
|
24
24
|
* @license MIT
|
|
25
25
|
* {@link https://codsen.com/os/ast-monkey-traverse/}
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
/**
|
|
28
28
|
* @name ast-contains-only-empty-space
|
|
29
29
|
* @fileoverview Does AST contain only empty space?
|
|
30
|
-
* @version 3.0.
|
|
30
|
+
* @version 3.0.7
|
|
31
31
|
* @author Roy Revelt, Codsen Ltd
|
|
32
32
|
* @license MIT
|
|
33
33
|
* {@link https://codsen.com/os/ast-contains-only-empty-space/}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ast-compare",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.7",
|
|
4
4
|
"description": "Compare anything: AST, objects, arrays, strings and nested thereof",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"array",
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@babel/runtime": "^7.16.3",
|
|
90
|
-
"ast-contains-only-empty-space": "^3.0.
|
|
90
|
+
"ast-contains-only-empty-space": "^3.0.7",
|
|
91
91
|
"lodash.isplainobject": "^4.0.6",
|
|
92
92
|
"matcher": "^5.0.0",
|
|
93
93
|
"type-detect": "^4.0.8"
|
|
@@ -112,24 +112,24 @@
|
|
|
112
112
|
"@rollup/plugin-strip": "^2.1.0",
|
|
113
113
|
"@rollup/plugin-typescript": "^8.3.0",
|
|
114
114
|
"@types/lodash.isplainobject": "^4.0.6",
|
|
115
|
-
"@types/node": "^16.11.
|
|
115
|
+
"@types/node": "^16.11.10",
|
|
116
116
|
"@types/tap": "^15.0.5",
|
|
117
117
|
"@types/type-detect": "^4.0.1",
|
|
118
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
119
|
-
"@typescript-eslint/parser": "^5.
|
|
120
|
-
"core-js": "^3.19.
|
|
118
|
+
"@typescript-eslint/eslint-plugin": "^5.5.0",
|
|
119
|
+
"@typescript-eslint/parser": "^5.5.0",
|
|
120
|
+
"core-js": "^3.19.2",
|
|
121
121
|
"cross-env": "^7.0.3",
|
|
122
122
|
"eslint": "^8.3.0",
|
|
123
|
-
"lect": "^0.18.
|
|
124
|
-
"rollup": "^2.60.
|
|
123
|
+
"lect": "^0.18.7",
|
|
124
|
+
"rollup": "^2.60.1",
|
|
125
125
|
"rollup-plugin-ascii": "^0.0.3",
|
|
126
126
|
"rollup-plugin-banner": "^0.2.1",
|
|
127
127
|
"rollup-plugin-cleanup": "^3.2.1",
|
|
128
128
|
"rollup-plugin-dts": "^4.0.1",
|
|
129
129
|
"rollup-plugin-terser": "^7.0.2",
|
|
130
|
-
"tap": "^15.1.
|
|
130
|
+
"tap": "^15.1.5",
|
|
131
131
|
"tslib": "^2.3.1",
|
|
132
|
-
"type-fest": "^2.
|
|
132
|
+
"type-fest": "^2.6.0",
|
|
133
133
|
"typescript": "^4.5.2"
|
|
134
134
|
},
|
|
135
135
|
"engines": {
|