@briza/illogical 2.0.0 → 2.0.1
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/package.json +4 -3
- /package/{lib/types → types}/common/evaluable.d.ts +0 -0
- /package/{lib/types → types}/common/type-check.d.ts +0 -0
- /package/{lib/types → types}/common/util.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/divide.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/index.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/isSimplifiedArithmeticExpression.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/multiply.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/operateWithExpectedDecimals.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/subtract.d.ts +0 -0
- /package/{lib/types → types}/expression/arithmetic/sum.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/eq.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/ge.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/gt.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/in.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/index.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/le.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/lt.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/ne.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/not-in.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/overlap.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/prefix.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/present.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/suffix.d.ts +0 -0
- /package/{lib/types → types}/expression/comparison/undefined.d.ts +0 -0
- /package/{lib/types → types}/expression/logical/and.d.ts +0 -0
- /package/{lib/types → types}/expression/logical/index.d.ts +0 -0
- /package/{lib/types → types}/expression/logical/nor.d.ts +0 -0
- /package/{lib/types → types}/expression/logical/not.d.ts +0 -0
- /package/{lib/types → types}/expression/logical/or.d.ts +0 -0
- /package/{lib/types → types}/expression/logical/xor.d.ts +0 -0
- /package/{lib/types → types}/index.d.ts +0 -0
- /package/{lib/types → types}/operand/collection.d.ts +0 -0
- /package/{lib/types → types}/operand/index.d.ts +0 -0
- /package/{lib/types → types}/operand/reference.d.ts +0 -0
- /package/{lib/types → types}/operand/value.d.ts +0 -0
- /package/{lib/types → types}/parser/index.d.ts +0 -0
- /package/{lib/types → types}/parser/options.d.ts +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@briza/illogical",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "A micro conditional javascript engine used to parse the raw logical and comparison expressions, evaluate the expression in the given data context, and provide access to a text form of the given expressions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/illogical.cjs",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"require": "./lib/illogical.cjs"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
|
-
"lib/"
|
|
14
|
+
"lib/",
|
|
15
|
+
"types/"
|
|
15
16
|
],
|
|
16
17
|
"author": {
|
|
17
18
|
"name": "David Horak",
|
|
@@ -22,7 +23,7 @@
|
|
|
22
23
|
"type-check": "tsc --noEmit",
|
|
23
24
|
"build:types": "tsc --emitDeclarationOnly",
|
|
24
25
|
"build:js": "rollup -c",
|
|
25
|
-
"build": "rm -rf types && npm run build:types && npm run build:js",
|
|
26
|
+
"build": "rm -rf lib types && npm run build:types && npm run build:js",
|
|
26
27
|
"docs": "typedoc src && git checkout docs/.nojekyll",
|
|
27
28
|
"test": "jest",
|
|
28
29
|
"lint": "eslint --max-warnings 0 \"src/**/*.{ts,js}\"",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|