@tannin/compile
Advanced tools
Comparing version 1.0.4 to 1.1.0
@@ -25,3 +25,3 @@ 'use strict'; | ||
* | ||
* @return {Function} Compiled evaluator. | ||
* @return {(variables?:{[variable:string]:*})=>*} Compiled evaluator. | ||
*/ | ||
@@ -28,0 +28,0 @@ function compile( expression ) { |
@@ -0,1 +1,7 @@ | ||
## 1.1.0 (2020-03-07) | ||
New Features | ||
- Add TypeScript definitions | ||
## 1.0.4 (2019-11-27) | ||
@@ -2,0 +8,0 @@ |
@@ -257,3 +257,3 @@ var compile = (function () { | ||
* | ||
* @return {Function} Compiled evaluator. | ||
* @return {(variables?:{[variable:string]:*})=>*} Compiled evaluator. | ||
*/ | ||
@@ -260,0 +260,0 @@ function compile( expression ) { |
@@ -21,3 +21,3 @@ import postfix from '@tannin/postfix'; | ||
* | ||
* @return {Function} Compiled evaluator. | ||
* @return {(variables?:{[variable:string]:*})=>*} Compiled evaluator. | ||
*/ | ||
@@ -24,0 +24,0 @@ export default function compile( expression ) { |
{ | ||
"name": "@tannin/compile", | ||
"version": "1.0.4", | ||
"version": "1.1.0", | ||
"description": "Compiles an evaluating function for a C expression", | ||
"main": "build/index.js", | ||
"module": "index.js", | ||
"types": "index.d.ts", | ||
"keywords": [], | ||
@@ -25,2 +26,3 @@ "author": { | ||
"index.js", | ||
"index.d.ts", | ||
"build", | ||
@@ -30,4 +32,4 @@ "dist" | ||
"dependencies": { | ||
"@tannin/evaluate": "^1.1.2", | ||
"@tannin/postfix": "^1.0.3" | ||
"@tannin/evaluate": "^1.2.0", | ||
"@tannin/postfix": "^1.1.0" | ||
}, | ||
@@ -37,3 +39,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "0e72800b6a32ef0bd82cb6d14c156bfa4093dc2c" | ||
"gitHead": "cd1c7447843df7751c4abd1b92aee03fe56bfba4" | ||
} |
@@ -31,4 +31,4 @@ `@tannin/compile` | ||
Copyright 2019 Andrew Duthie | ||
Copyright 2019-2020 Andrew Duthie | ||
Released under the [MIT License](https://opensource.org/licenses/MIT). |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11942
9
328
Updated@tannin/evaluate@^1.2.0
Updated@tannin/postfix@^1.1.0