@briza/illogical 1.5.5 → 1.5.8
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/changelog.md +13 -0
- package/lib/illogical.esm.js +272 -479
- package/lib/illogical.js +273 -480
- package/package.json +25 -25
- package/readme.md +46 -9
- package/types/common/evaluable.d.ts +3 -3
- package/types/common/util.d.ts +5 -0
- package/types/parser/index.d.ts +3 -3
- package/types/parser/options.d.ts +1 -1
package/changelog.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# illogical changelog
|
|
2
2
|
|
|
3
|
+
## 1.5.8
|
|
4
|
+
|
|
5
|
+
- Introduce the backtick syntax for condition referencing keys that contain dot delimiters
|
|
6
|
+
|
|
7
|
+
## 1.5.7
|
|
8
|
+
|
|
9
|
+
- Update documentation to include example of comparison operator with two references
|
|
10
|
+
- Fix linting issues
|
|
11
|
+
|
|
12
|
+
## 1.5.6
|
|
13
|
+
|
|
14
|
+
- Comparison Expressions updated to support string comparison for ISO-8601 formatted dates.
|
|
15
|
+
|
|
3
16
|
## 1.5.5
|
|
4
17
|
|
|
5
18
|
- Expose default options for parser
|