asset-map-webpack-plugin
Advanced tools
Comparing version 1.1.0 to 1.1.1
@@ -99,3 +99,3 @@ "use strict"; | ||
if (assetsEmitted || chunksEmitted) { | ||
fs.writeFileSync(_this.outputFile, JSON.stringify({ assets: assets, chunks: chunks })); | ||
fs.writeFileSync(_this.outputFile, JSON.stringify({ assets: assets, chunks: chunks }, null, 2)); | ||
} | ||
@@ -102,0 +102,0 @@ }); |
{ | ||
"name": "asset-map-webpack-plugin", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Webpack plugin that creates a map of assets to public url slug for server agnostic usage.", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -72,3 +72,3 @@ import fs from 'fs'; | ||
if (assetsEmitted || chunksEmitted) { | ||
fs.writeFileSync(this.outputFile, JSON.stringify({ assets, chunks })); | ||
fs.writeFileSync(this.outputFile, JSON.stringify({ assets, chunks }, null, 2)); | ||
} | ||
@@ -75,0 +75,0 @@ }); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
79897
0