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

@aofl/cli-lib

Package Overview
Dependencies
Maintainers
2
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aofl/cli-lib - npm Package Compare versions

Comparing version 4.0.0-alpha.11 to 4.0.0-alpha.12

12

modules/html-webpack-config.js

@@ -18,8 +18,8 @@ const jsStringEscape = require('js-string-escape');

for (const key in compilation.chunks) {
if (!compilation.chunks.hasOwnProperty(key)) continue;
const chunk = compilation.chunks[key];
compilation.chunks.forEach((chunk) => {
if (typeof chunk.name === 'string' && chunk.name.length > 0) {
const url = assets.publicPath + chunk.files[0];
const source = compilation.assets[chunk.files[0].replace(/\?.*/, '')].source();
const filesIter = chunk.files.values();
const file = filesIter.next().value;
const url = assets.publicPath + file;
const source = compilation.assets[file.replace(/\?.*/, '')].source();
const sourceStr = jsStringEscape(source);

@@ -32,3 +32,3 @@ assetsMap[chunk.name] = {

}
}
});

@@ -35,0 +35,0 @@ return {

{
"name": "@aofl/cli-lib",
"version": "4.0.0-alpha.11",
"version": "4.0.0-alpha.12",
"description": "Shared library for cli and various webpack plugins.",

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

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