Socket
Socket
Sign inDemoInstall

feelin

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

feelin - npm Package Compare versions

Comparing version 0.25.0 to 0.26.0

5

CHANGELOG.md

@@ -9,2 +9,7 @@ # Changelog

## 0.26.0
* `CHORE`: improve typings
* `DEPS`: bump to `lezer-feel@0.6.0`
## 0.25.0

@@ -11,0 +16,0 @@

4

dist/index.d.ts

@@ -1,2 +0,2 @@

export { unaryTest, evaluate } from './interpreter';
export { parseExpressions, parseUnaryTests } from './parser';
export * from './interpreter';
export * from './parser';

@@ -1,2 +0,3 @@

export declare function unaryTest(expression: string, context?: Record<string, any>): any;
export declare function evaluate(expression: string, context?: Record<string, any>): any;
export declare type InterpreterContext = Record<string, any>;
export declare function unaryTest(expression: string, context?: InterpreterContext): any;
export declare function evaluate(expression: string, context?: InterpreterContext): any;
import { Tree } from '@lezer/common';
declare type ParseContext = Record<string, any>;
declare type ParseResult = {
export declare type ParseContext = Record<string, any>;
export declare type ParseResult = {
parsedContext: ParseContext;

@@ -10,2 +10,1 @@ parsedInput: string;

export declare function parseUnaryTests(expression: string, context?: ParseContext): ParseResult;
export {};
{
"name": "feelin",
"version": "0.25.0",
"version": "0.26.0",
"description": "A FEEL parser and interpreter",

@@ -38,3 +38,3 @@ "main": "dist/index.js",

"@lezer/lr": "^1.2.0",
"lezer-feel": "^0.5.1"
"lezer-feel": "^0.6.0"
},

@@ -52,3 +52,3 @@ "repository": {

"generate-typings": "tsc src/index.ts --emitDeclarationOnly --declaration --outDir dist",
"prepare": "run-s build",
"prepare": "run-s build generate-typings",
"test": "mocha test/*-spec.js",

@@ -55,0 +55,0 @@ "test:watch": "npm test -- -w",

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc