@briza/illogical 1.7.2 → 1.7.3

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.
Files changed (2) hide show
  1. package/changelog.md +4 -0
  2. package/package.json +32 -25
package/changelog.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # illogical changelog
2
2
 
3
+ ## 1.7.3
4
+
5
+ - Updating tsconfig and other dependencies.
6
+
3
7
  ## 1.7.2
4
8
 
5
9
  - Resolving performance issues on simplify and removing unnecessary unsafeSimplify.
package/package.json CHANGED
@@ -1,10 +1,17 @@
1
1
  {
2
2
  "name": "@briza/illogical",
3
- "version": "1.7.2",
3
+ "version": "1.7.3",
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
- "main": "lib/illogical.js",
6
- "module": "lib/illogical.esm.js",
7
- "typings": "types/index.d.ts",
5
+ "main": "./lib/illogical.js",
6
+ "module": "./lib/illogical.esm.js",
7
+ "types": "./types/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./types/index.d.ts",
11
+ "require": "./lib/illogical.js",
12
+ "import": "./lib/illogical.esm.js"
13
+ }
14
+ },
8
15
  "files": [
9
16
  "/lib",
10
17
  "/types",
@@ -42,31 +49,31 @@
42
49
  "rules"
43
50
  ],
44
51
  "devDependencies": {
45
- "@babel/core": "^7.27.3",
52
+ "@babel/core": "^7.28.5",
46
53
  "@babel/plugin-proposal-class-properties": "^7.18.6",
47
- "@babel/preset-env": "^7.25.3",
48
- "@babel/preset-typescript": "^7.24.7",
49
- "@rollup/plugin-babel": "^6.0.4",
50
- "@rollup/plugin-commonjs": "^26.0.1",
51
- "@rollup/plugin-eslint": "^9.0.5",
52
- "@rollup/plugin-node-resolve": "^15.2.3",
53
- "@types/jest": "^29.5.12",
54
- "@typescript-eslint/eslint-plugin": "^8.0.1",
55
- "@typescript-eslint/parser": "^8.0.1",
56
- "eslint": "^8.57.0",
57
- "eslint-config-prettier": "^9.1.0",
58
- "eslint-import-resolver-typescript": "^3.6.1",
59
- "eslint-plugin-import": "^2.29.1",
54
+ "@babel/preset-env": "^7.28.5",
55
+ "@babel/preset-typescript": "^7.28.5",
56
+ "@rollup/plugin-babel": "^6.1.0",
57
+ "@rollup/plugin-commonjs": "^26.0.3",
58
+ "@rollup/plugin-eslint": "^9.1.0",
59
+ "@rollup/plugin-node-resolve": "^15.3.1",
60
+ "@types/jest": "^29.5.14",
61
+ "@typescript-eslint/eslint-plugin": "^8.46.2",
62
+ "@typescript-eslint/parser": "^8.46.2",
63
+ "eslint": "^8.57.1",
64
+ "eslint-config-prettier": "^9.1.2",
65
+ "eslint-import-resolver-typescript": "^3.10.1",
66
+ "eslint-plugin-import": "^2.32.0",
60
67
  "eslint-plugin-node": "^11.1.0",
61
- "eslint-plugin-prettier": "^5.2.1",
62
- "eslint-plugin-promise": "^7.1.0",
68
+ "eslint-plugin-prettier": "^5.5.4",
69
+ "eslint-plugin-promise": "^7.2.1",
63
70
  "eslint-plugin-simple-import-sort": "^12.1.1",
64
71
  "jest": "^29.7.0",
65
72
  "license-checker": "^25.0.1",
66
- "prettier": "^3.3.3",
67
- "rollup": "^4.41.1",
68
- "ts-jest": "^29.2.4",
69
- "typedoc": "^0.26.5",
70
- "typescript": "^5.5.4"
73
+ "prettier": "^3.6.2",
74
+ "rollup": "^4.52.5",
75
+ "ts-jest": "^29.4.5",
76
+ "typedoc": "^0.26.11",
77
+ "typescript": "^5.6.3"
71
78
  }
72
79
  }