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

@studyportals/bob-manifest-generator

Package Overview
Dependencies
Maintainers
14
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@studyportals/bob-manifest-generator - npm Package Compare versions

Comparing version 2.1.3 to 2.2.0

2

package.json
{
"name": "@studyportals/bob-manifest-generator",
"version": "2.1.3",
"version": "2.2.0",
"description": "A Webpack plugin that generates a manifest file for your microservice.",

@@ -5,0 +5,0 @@ "main": "src/main.js",

@@ -52,2 +52,3 @@ # BobManifestGenerator

baseURL: string,
crossorigin: boolean,
exclude: string[],

@@ -67,2 +68,3 @@ async: string[],

"html": "https://bucket.prtl.co/index.html",
"crossorigin": true,
"assets": {

@@ -112,2 +114,3 @@ "js": [

| `baseURL` | The base URL for your microservice's assets. This will be prepended to the filenames. | no (default: `''`) |
| `crossorigin` | Determines if JS assets will be inserted on the page with a `crossorigin="anonymous"` tag. | no (default: `true`) |
| `exclude` | An array of filenames to be excluded from the manifest. This can be just a filename or a filename including extension. When `true` is passed as a value, all assets will be excluded. | no (default: `[]`) |

@@ -114,0 +117,0 @@ | `async` | An array of JS filenames to be loaded async. This can be just a filename or a filename including extension. Keep in mind that only javascript assets may be loaded async. When `true` is passed as a value, all javascript assets will be loaded async. | no (default: `[]`) |

@@ -12,2 +12,3 @@ const path = require('path');

html: options.html,
crossorigin: (options.crossorigin === false) ? false : true,
assets: {

@@ -14,0 +15,0 @@ 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