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

paraviewweb

Package Overview
Dependencies
Maintainers
1
Versions
346
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

paraviewweb - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

4

package.json
{
"name": "paraviewweb",
"version": "1.0.5",
"version": "1.0.6",
"description": "Web framework for building interactive visualization relying on VTK or ParaView to produce visualization data",

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

"build": "webpack --progress --colors",
"build:release": "npm run build -- -p",
"build:release": "export NODE_ENV=production && npm run build -- -p",
"test": "karma start ./config/karma.conf.js",

@@ -100,0 +100,0 @@ "test:travis": "karma start ./config/karma.conf.js --browsers PhantomJS --single-run",

var path = require('path'),
loaders = require('./config/webpack.loaders.js');
webpack = require('webpack'),
loaders = require('./config/webpack.loaders.js'),
plugins = [];
if(process.env.NODE_ENV === 'production') {
console.log('==> Production build');
plugins.push(new webpack.DefinePlugin({
"process.env": {
NODE_ENV: JSON.stringify("production"),
},
}));
}
module.exports = {
plugins: [],
plugins: plugins,
entry: './src/index.js',

@@ -7,0 +18,0 @@ output: {

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