@studyportals/bob-manifest-generator
Advanced tools
Comparing version 3.0.0-beta.7 to 3.0.0-beta.8
{ | ||
"name": "@studyportals/bob-manifest-generator", | ||
"version": "3.0.0-beta.7", | ||
"version": "3.0.0-beta.8", | ||
"description": "A Webpack plugin that generates a manifest file for your microservice.", | ||
@@ -5,0 +5,0 @@ "main": "src/main.js", |
@@ -34,3 +34,3 @@ const path = require('path'); | ||
this.validateOptions(compilation); | ||
this.gatherAssets(compilation.chunks); | ||
this.gatherAssets(compilation.entrypoints); | ||
this.setHtml(compilation.getAssets(), compilation.chunks) | ||
@@ -130,4 +130,4 @@ GenericManifestGenerator.emitFile(compilation, 'manifest.json', this.manifest); | ||
for (const chunk of chunks) { | ||
if (!chunk.entryModule) continue; | ||
for (const entrypoint of entrypoints) { | ||
const chunk = entrypoint[1].getEntrypointChunk(); | ||
@@ -134,0 +134,0 @@ for (const fileName of chunk.files) { |
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
16295