chunks-2-json-webpack-plugin
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"name": "chunks-2-json-webpack-plugin", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Plugin for webpack 4, that outputs build files to JSON", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -12,3 +12,3 @@ # chunks-2-json-webpack-plugin | ||
Webpack is a great tool and has witout a doubt revolutionized the way we build frontend applications. However usually, due to the caching strategy, chunck files will have hash appended to their file name. And if you want to use yoru build in an env, that does not know | ||
Webpack is a great tool and has without a doubt revolutionized the way we build frontend applications. However usually, due to the (great) caching strategy, chunk files will have hash appended to their file name. And if you want to use your build in an env, that does not know | ||
anything about this, it becomes complicated to inject the build in your app. | ||
@@ -51,5 +51,5 @@ | ||
"app": { | ||
"css": "dist/css/app.eb829ccc.css", | ||
"js": "/dist/js/app.dd31cdcb.js", | ||
"jsMap": "/dist/js/app.dd31cdcb.js.map" | ||
"css": "/css/app.eb829ccc.css", | ||
"js": "/js/app.dd31cdcb.js", | ||
"jsMap": "/js/app.dd31cdcb.js.map" | ||
} | ||
@@ -56,0 +56,0 @@ } |
5387