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

webpack-isomorphic-tools

Package Overview
Dependencies
Maintainers
1
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webpack-isomorphic-tools - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

9

babel-transpiled-modules/plugins/write stats.js

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

var _mkdirp = require('mkdirp');
var _mkdirp2 = _interopRequireDefault(_mkdirp);
// writes webpack-stats.json file, which contains assets' file paths

@@ -128,4 +132,9 @@

// for debugging purposes
// console.log(JSON.stringify(output, null, 2))
// create all the folders in the path if they don't exist
_mkdirp2['default'].sync(_path2['default'].dirname(options.output));
// write webpack stats file
_fs2['default'].writeFileSync(options.output, JSON.stringify(output));

@@ -132,0 +141,0 @@ }

5

package.json
{
"name": "webpack-isomorphic-tools",
"version": "0.1.3",
"version": "0.1.4",
"description": "Transforms CSS-alike text into a React style JSON object",

@@ -8,3 +8,4 @@ "main": "babel-transpiled-modules/index.js",

"babel-runtime": "^5.6.20",
"colors": "^1.1.2"
"colors": "^1.1.2",
"mkdirp": "^0.5.1"
},

@@ -11,0 +12,0 @@ "devDependencies": {

@@ -1,3 +0,4 @@

import fs from 'fs'
import path from 'path'
import fs from 'fs'
import path from 'path'
import mkdirp from 'mkdirp'

@@ -112,5 +113,10 @@ // writes webpack-stats.json file, which contains assets' file paths

// for debugging purposes
// console.log(JSON.stringify(output, null, 2))
// create all the folders in the path if they don't exist
mkdirp.sync(path.dirname(options.output))
// write webpack stats file
fs.writeFileSync(options.output, JSON.stringify(output))
}
babel-transpiled-modules/plugins/write stats.js.map

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