ast-compare 3.0.11 → 3.0.12
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
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.12
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/ast-compare/}
|
|
@@ -12,7 +12,7 @@ var astCompare=(()=>{var Et=Object.create;var M=Object.defineProperty,$t=Object.
|
|
|
12
12
|
/**
|
|
13
13
|
* @name ast-contains-only-empty-space
|
|
14
14
|
* @fileoverview Does AST contain only empty space?
|
|
15
|
-
* @version 3.0.
|
|
15
|
+
* @version 3.0.12
|
|
16
16
|
* @author Roy Revelt, Codsen Ltd
|
|
17
17
|
* @license MIT
|
|
18
18
|
* {@link https://codsen.com/os/ast-contains-only-empty-space/}
|
|
@@ -20,7 +20,7 @@ var astCompare=(()=>{var Et=Object.create;var M=Object.defineProperty,$t=Object.
|
|
|
20
20
|
/**
|
|
21
21
|
* @name ast-monkey-traverse
|
|
22
22
|
* @fileoverview Utility library to traverse AST
|
|
23
|
-
* @version 3.0.
|
|
23
|
+
* @version 3.0.12
|
|
24
24
|
* @author Roy Revelt, Codsen Ltd
|
|
25
25
|
* @license MIT
|
|
26
26
|
* {@link https://codsen.com/os/ast-monkey-traverse/}
|
|
@@ -28,7 +28,7 @@ var astCompare=(()=>{var Et=Object.create;var M=Object.defineProperty,$t=Object.
|
|
|
28
28
|
/**
|
|
29
29
|
* @name ast-monkey-util
|
|
30
30
|
* @fileoverview Utility library of AST helper functions
|
|
31
|
-
* @version 2.0.
|
|
31
|
+
* @version 2.0.12
|
|
32
32
|
* @author Roy Revelt, Codsen Ltd
|
|
33
33
|
* @license MIT
|
|
34
34
|
* {@link https://codsen.com/os/ast-monkey-util/}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ast-compare",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.12",
|
|
4
4
|
"description": "Compare anything: AST, objects, arrays, strings and nested thereof",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"array",
|
|
@@ -42,9 +42,10 @@
|
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
44
44
|
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
45
|
+
"devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
|
|
45
46
|
"dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
|
|
46
47
|
"examples": "node '../../ops/scripts/run-examples.js'",
|
|
47
|
-
"lect": "node '../../ops/lect/lect.js'",
|
|
48
|
+
"lect": "node '../../ops/lect/lect.js' && yarn run prettier 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
|
|
48
49
|
"letspublish": "yarn publish || :",
|
|
49
50
|
"lint": "eslint . --fix",
|
|
50
51
|
"perf": "node perf/check.js",
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"prettier": "prettier",
|
|
53
54
|
"prettier:format": "prettier --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern",
|
|
54
55
|
"pretest": "yarn run lect && yarn run build",
|
|
55
|
-
"test": "
|
|
56
|
+
"test": "yarn run devtest",
|
|
56
57
|
"unit": "uvu test"
|
|
57
58
|
},
|
|
58
59
|
"engines": {
|
|
@@ -73,7 +74,7 @@
|
|
|
73
74
|
}
|
|
74
75
|
},
|
|
75
76
|
"dependencies": {
|
|
76
|
-
"ast-contains-only-empty-space": "^3.0.
|
|
77
|
+
"ast-contains-only-empty-space": "^3.0.12",
|
|
77
78
|
"lodash.isplainobject": "^4.0.6",
|
|
78
79
|
"matcher": "^5.0.0",
|
|
79
80
|
"type-detect": "^4.0.8"
|
|
@@ -81,6 +82,6 @@
|
|
|
81
82
|
"devDependencies": {
|
|
82
83
|
"@types/lodash.isplainobject": "^4.0.6",
|
|
83
84
|
"@types/type-detect": "^4.0.1",
|
|
84
|
-
"type-fest": "^2.
|
|
85
|
+
"type-fest": "^2.10.0"
|
|
85
86
|
}
|
|
86
87
|
}
|