Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vega-selections

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vega-selections - npm Package Compare versions

Comparing version 5.1.3 to 5.1.4

build/vega-selection.js

24

package.json
{
"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 @@ }

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