bare-script 2.2.18 → 2.3.0
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/lib/library.js +1392 -1030
- package/lib/parser.js +1 -1
- package/package.json +3 -3
package/lib/parser.js
CHANGED
|
@@ -510,7 +510,7 @@ const binaryReorder = {
|
|
|
510
510
|
/**
|
|
511
511
|
* Parse a BareScript expression
|
|
512
512
|
*
|
|
513
|
-
* @param {string} exprText - The [expression text]{@link https://craigahobbs.github.io/bare-script/language/#
|
|
513
|
+
* @param {string} exprText - The [expression text]{@link https://craigahobbs.github.io/bare-script/language/#expressions}
|
|
514
514
|
* @returns {Object} The [expression model]{@link https://craigahobbs.github.io/bare-script/model/#var.vName='Expression'}
|
|
515
515
|
* @throws [BareScriptParserError]{@link module:lib/parser.BareScriptParserError}
|
|
516
516
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "bare-script",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.3.0",
|
|
5
5
|
"description": "BareScript; a lightweight scripting and expression language",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"expression",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"schema-markdown": "~1.2"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"c8": "~
|
|
34
|
-
"eslint": "~8.
|
|
33
|
+
"c8": "~9.1",
|
|
34
|
+
"eslint": "~8.56",
|
|
35
35
|
"jsdoc": "~4.0"
|
|
36
36
|
}
|
|
37
37
|
}
|