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

react-virtualized

Package Overview
Dependencies
Maintainers
1
Versions
296
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-virtualized - npm Package Compare versions

Comparing version 2.7.3 to 2.7.4

3

CHANGELOG.md
Changelog
------------
#### 2.7.4
Uglify dist build to remove dead code.
#### 2.7.2 & 2.7.3

@@ -5,0 +8,0 @@ Improved checks for undefined `document` and `window` in hopes of better supporting server-side rendering.

6

package.json

@@ -6,3 +6,3 @@ {

"user": "bvaughn",
"version": "2.7.3",
"version": "2.7.4",
"scripts": {

@@ -70,2 +70,3 @@ "build": "npm run build:demo && npm run build:dist",

"devDependencies": {
"autoprefixer": "^6.2.3",
"babel": "^5.8.34",

@@ -78,4 +79,2 @@ "babel-core": "^5.8.34",

"css-loader": "^0.23.0",
"cssnext": "^1.8.4",
"cssnext-loader": "^1.0.1",
"express": "^4.13.3",

@@ -97,2 +96,3 @@ "file-loader": "^0.8.5",

"phantomjs": "^1.9.19",
"postcss-loader": "^0.8.0",
"react": "^0.14.3",

@@ -99,0 +99,0 @@ "react-addons-test-utils": "^0.14.3",

@@ -7,3 +7,3 @@ <img src="https://cloud.githubusercontent.com/assets/29597/11737732/0ca1e55e-9f91-11e5-97f3-098f2f8ed866.png" alt="React virtualized" data-canonical-src="https://cloud.githubusercontent.com/assets/29597/11737732/0ca1e55e-9f91-11e5-97f3-098f2f8ed866.png" width="330" height="100" />

![NPM monthly downloads](https://img.shields.io/npm/dm/react-virtualized.svg)
[![Circle CI badge](https://img.shields.io/circleci/project/bvaughn/react-virtualized.svg)](https://circleci.com/gh/bvaughn/react-virtualized)
[![Circle CI badge](https://img.shields.io/circleci/project/bvaughn/react-virtualized/master.svg)](https://circleci.com/gh/bvaughn/react-virtualized)

@@ -10,0 +10,0 @@ ### Demos available here: http://bvaughn.github.io/react-virtualized/

const HtmlWebpackPlugin = require('html-webpack-plugin')
const autoprefixer = require('autoprefixer')
const path = require('path')

@@ -35,7 +36,10 @@ const webpack = require('webpack')

test: /\.css$/,
loaders: ['style', 'css?modules&importLoaders=1', 'cssnext'],
loaders: ['style', 'css?modules&importLoaders=1', 'postcss'],
include: path.join(__dirname, 'source')
}
]
},
postcss: function () {
return [autoprefixer]
}
}
const HtmlWebpackPlugin = require('html-webpack-plugin')
const autoprefixer = require('autoprefixer')
const path = require('path')

@@ -20,3 +21,4 @@ const webpack = require('webpack')

}),
new webpack.NoErrorsPlugin()
new webpack.NoErrorsPlugin(),
new webpack.optimize.UglifyJsPlugin()
],

@@ -32,3 +34,3 @@ module: {

test: /\.css$/,
loaders: ['style', 'css?modules&importLoaders=1', 'cssnext'],
loaders: ['style', 'css?modules&importLoaders=1', 'postcss'],
include: path.join(__dirname, 'source')

@@ -38,2 +40,5 @@ }

},
postcss: function () {
return [autoprefixer]
},
devServer: {

@@ -40,0 +45,0 @@ contentBase: 'build',

@@ -0,2 +1,4 @@

const autoprefixer = require('autoprefixer')
const path = require('path')
const webpack = require('webpack')

@@ -23,2 +25,7 @@ module.exports = {

plugins: [
new webpack.optimize.UglifyJsPlugin({
beautify: true,
comments: true,
mangle: false
})
],

@@ -34,7 +41,10 @@ module: {

test: /\.css$/,
loaders: ['style', 'css?modules&importLoaders=1', 'cssnext'],
loaders: ['style', 'css?modules&importLoaders=1', 'postcss'],
include: path.join(__dirname, 'source')
}
]
},
postcss: function () {
return [autoprefixer]
}
}

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

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