You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new import { isObject } from 'lodash' in the rule-result.js file generate the following exception for me.
using the lodash.isobjectlike package you should use import { isObject } from 'lodash.isobjectlike'
I used to have "json-rules-engine": "^6.1.2"' in my dependencies, and under the hood it was was automatically updated to the last version after your last 6.4.0 release.
Sorted forcing the package to the initial version "json-rules-engine": "6.1.2"'
If I'm not in wrong the lodash package is not used in any other source files, most problalby it can be entirely removed from devDependencies, it will not installed when used package will be installed using npm ci
My project details:
monorepo using lerna
server app using nestjs
json-rules-engine imported in a package imported from server as a local dependency
The text was updated successfully, but these errors were encountered:
chris-pardy
pushed a commit
to RateGravity/json-rules-engine
that referenced
this issue
Aug 26, 2023
The new
import { isObject } from 'lodash'
in therule-result.js
file generate the following exception for me.using the
lodash.isobjectlike
package you should useimport { isObject } from 'lodash.isobjectlike'
I used to have
"json-rules-engine": "^6.1.2"'
in my dependencies, and under the hood it was was automatically updated to the last version after your last 6.4.0 release.Sorted forcing the package to the initial version
"json-rules-engine": "6.1.2"'
If I'm not in wrong the
lodash
package is not used in any other source files, most problalby it can be entirely removed from devDependencies, it will not installed when used package will be installed usingnpm ci
My project details:
json-rules-engine
imported in a package imported from server as a local dependencyThe text was updated successfully, but these errors were encountered: