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

@hpcc-js/bundle

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hpcc-js/bundle - npm Package Compare versions

Comparing version 0.0.6 to 0.0.7

9

lib/rollup.js

@@ -22,2 +22,3 @@ "use strict";

const deps = {};
const webpackShims = ["@hpcc-js/dgrid-shim", "@hpcc-js/ddl-shim", "@hpcc-js/c3-shim"];
function walkDependencies(folder, depth = 0) {

@@ -27,3 +28,3 @@ const pkg = require(path.join(folder, "package.json"));

for (const key in pkg.dependencies) {
if (key === "@hpcc-js/dgrid-shim" || (key !== "@hpcc-js/d3-bullet" && key.indexOf("@hpcc-js") === 0 && key.indexOf("-shim") < 0)) {
if (webpackShims.indexOf(key) >= 0 || (key !== "@hpcc-js/d3-bullet" && key.indexOf("@hpcc-js") === 0 && key.indexOf("-shim") < 0)) {
const depPkg = walkDependencies(path.join(folder, "node_modules", key), depth + 1);

@@ -71,5 +72,3 @@ deps[key] = depPkg;

commonjs({
namedExports: {
"../../shims/dgrid-shim/dist/dgrid-shim.js": ["Memory", "PagingGrid", "Grid"]
}
namedExports: {}
}),

@@ -102,2 +101,2 @@ postcss({

bundle(true)
]).catch(console.error);
]).catch(console.log);
{
"name": "@hpcc-js/bundle",
"version": "0.0.6",
"version": "0.0.7",
"description": "hpcc-js - bundle",

@@ -21,2 +21,9 @@ "main": "lib/index.js",

"dependencies": {
"rollup": "^0.45.2",
"rollup-plugin-alias": "^1.3.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.4",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"tslib": "^1.7.1"

@@ -23,0 +30,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