Socket
Socket
Sign inDemoInstall

react-loadable

Package Overview
Dependencies
6
Maintainers
2
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 5.2.3 to 5.2.4

9

lib/webpack.js

@@ -6,2 +6,3 @@ 'use strict';

var fs = require('fs');
var path = require('path');

@@ -40,2 +41,10 @@ function buildManifest(compiler, compilation) {

var json = JSON.stringify(manifest, null, 2);
var outputDirectory = path.dirname(_this.filename);
try {
fs.mkdirSync(outputDirectory);
} catch (err) {
if (err.code !== 'EEXIST') {
throw err;
}
}
fs.writeFileSync(_this.filename, json);

@@ -42,0 +51,0 @@ callback();

2

package.json
{
"name": "react-loadable",
"version": "5.2.3",
"version": "5.2.4",
"description": "A higher order component for loading components with promises",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc