vega-selections
Advanced tools
Comparing version 5.1.3 to 5.1.4
{ | ||
"name": "vega-selections", | ||
"version": "5.1.3", | ||
"version": "5.1.4", | ||
"description": "Vega expression functions for Vega-Lite selections.", | ||
@@ -12,20 +12,18 @@ "keywords": [ | ||
"license": "BSD-3-Clause", | ||
"main": "build/vega-selections.js", | ||
"module": "index", | ||
"main": "build/vega-selection.js", | ||
"module": "build/vega-selection.module.js", | ||
"unpkg": "build/vega-selection.min.js", | ||
"repository": "vega/vega", | ||
"scripts": { | ||
"rollup": "rollup -g vega-expression:vega,vega-util:vega -f umd -n vega -o build/vega-selections.js -- index.js", | ||
"prebuild": "rimraf build && mkdir build", | ||
"build": "yarn rollup", | ||
"postbuild": "terser build/vega-selections.js -c -m -o build/vega-selections.min.js", | ||
"pretest": "yarn prebuild && yarn rollup", | ||
"prebuild": "rimraf build", | ||
"build": "rollup -c", | ||
"pretest": "yarn build --config-test", | ||
"test": "tape 'test/**/*-test.js'", | ||
"prepublishOnly": "yarn test && yarn build", | ||
"postpublish": "git push && git push --tags" | ||
"prepublishOnly": "yarn test && yarn build" | ||
}, | ||
"dependencies": { | ||
"vega-expression": "^2.7.0", | ||
"vega-util": "^1.15.1" | ||
"vega-expression": "^3.0.0", | ||
"vega-util": "^1.15.2" | ||
}, | ||
"gitHead": "8d6793f4ca7eaaf2d22186764e9ce2dae687cf52" | ||
"gitHead": "4affcbedb9d14815dbb6d3b250ed231b54fc95c0" | ||
} |
@@ -57,3 +57,3 @@ import {And, Or, Union, VlMulti} from './constants'; | ||
resolved[VlMulti] = op === Union | ||
? {[Or]: entries.reduce((acc, k) => (acc.push.apply(acc, multiRes[k]), acc), [])} | ||
? {[Or]: entries.reduce((acc, k) => (acc.push(...multiRes[k]), acc), [])} | ||
: {[And]: entries.map(k => ({[Or]: multiRes[k]}))}; | ||
@@ -60,0 +60,0 @@ } |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
43870
13
666
1
1
+ Addedvega-expression@3.0.1(transitive)
- Removedvega-expression@2.7.0(transitive)
Updatedvega-expression@^3.0.0
Updatedvega-util@^1.15.2