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

fastboot

Package Overview
Dependencies
Maintainers
10
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastboot - npm Package Compare versions

Comparing version 4.0.0 to 4.1.0

2

package.json
{
"name": "fastboot",
"version": "4.0.0",
"version": "4.1.0",
"description": "Library for rendering Ember apps in node.js",

@@ -5,0 +5,0 @@ "keywords": [

@@ -63,2 +63,4 @@ # FastBoot

> By default source maps are enabled by the source-maps-support package. Setting an environment variable `FASTBOOT_SOURCEMAPS_DISABLE=true` will bypass this package effectively disabling source maps support.
`app.visit` takes a second parameter as `options` above which a map and allows to define additional optional per request

@@ -65,0 +67,0 @@ configuration:

@@ -57,6 +57,10 @@ 'use strict';

this.scripts = buildScripts([
require.resolve('./scripts/install-source-map-support'),
...config.scripts,
]);
if (process.env.FASTBOOT_SOURCEMAPS_DISABLE) {
this.scripts = buildScripts([...config.scripts]);
} else {
this.scripts = buildScripts([
require.resolve('./scripts/install-source-map-support'),
...config.scripts,
]);
}

@@ -63,0 +67,0 @@ // default to 1 if maxSandboxQueueSize is not defined so the sandbox is pre-warmed when process comes up

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