Skip to content

Commit

Permalink
chore: bump feel evaluation deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaiir committed Jul 12, 2023
1 parent ce0ee07 commit ce14684
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 52 deletions.
86 changes: 38 additions & 48 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/form-js-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"big.js": "^6.2.1",
"classnames": "^2.3.1",
"didi": "^9.0.0",
"feelers": "^0.1.0-alpha.8",
"feelin": "^0.41.0",
"feelers": "^0.1.0",
"feelin": "^1.0.0",
"flatpickr": "^4.6.13",
"ids": "^1.0.0",
"min-dash": "^4.0.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { parseExpressions, parseUnaryTests } from 'feelin';
import { parseExpression, parseUnaryTests } from 'feelin';

export const getFlavouredFeelVariableNames = (feelString, feelFlavour, options = {}) => {

Expand All @@ -9,7 +9,7 @@ export const getFlavouredFeelVariableNames = (feelString, feelFlavour, options =

if (![ 'expression', 'unaryTest' ].includes(feelFlavour)) return [];

const tree = feelFlavour === 'expression' ? parseExpressions(feelString) : parseUnaryTests(feelString);
const tree = feelFlavour === 'expression' ? parseExpression(feelString) : parseUnaryTests(feelString);

const simpleExpressionTree = _buildSimpleFeelStructureTree(tree, feelString);

Expand Down

0 comments on commit ce14684

Please sign in to comment.