ast-compare 3.0.1 → 3.0.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/README.md +1 -1
- package/dist/ast-compare.esm.js +1 -1
- package/dist/ast-compare.umd.js +4 -4
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ This package is ESM only: Node 12+ is needed to use it and it must be imported i
|
|
|
32
32
|
npm i ast-compare
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
If you need a legacy version which works with require
|
|
35
|
+
If you need a legacy version which works with `require`, use version 2.1.0
|
|
36
36
|
|
|
37
37
|
## Quick Take
|
|
38
38
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2
|
|
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.2",
|
|
4
4
|
"description": "Compare anything: AST, objects, arrays, strings and nested thereof",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"array",
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
},
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@babel/runtime": "^7.15.4",
|
|
94
|
-
"ast-contains-only-empty-space": "^3.0.
|
|
94
|
+
"ast-contains-only-empty-space": "^3.0.2",
|
|
95
95
|
"lodash.isplainobject": "^4.0.6",
|
|
96
96
|
"matcher": "^4.0.0",
|
|
97
97
|
"type-detect": "^4.0.8"
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
"core-js": "^3.17.3",
|
|
125
125
|
"cross-env": "^7.0.3",
|
|
126
126
|
"eslint": "^7.32.0",
|
|
127
|
-
"lect": "^0.18.
|
|
127
|
+
"lect": "^0.18.2",
|
|
128
128
|
"rollup": "^2.56.3",
|
|
129
129
|
"rollup-plugin-ascii": "^0.0.3",
|
|
130
130
|
"rollup-plugin-banner": "^0.2.1",
|