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

single-spa

Package Overview
Dependencies
Maintainers
1
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

single-spa - npm Package Compare versions

Comparing version 2.0.9 to 2.0.10

2

lib/single-spa.js

@@ -27,3 +27,3 @@ 'use strict';

var window = typeof window !== 'undefined' ? window : global;
var window = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : self;

@@ -30,0 +30,0 @@ var originalAddEventListener = window.addEventListener;

{
"name": "single-spa",
"version": "2.0.9",
"version": "2.0.10",
"description": "Multiple applications, one page",

@@ -11,3 +11,3 @@ "main": "lib/single-spa.js",

"test": "jasmine",
"build:canopy": "npm run build && rm -rf ../spalpatine/jspm_packages/npm/single-spa@2.0.8 && rsync -av . ../spalpatine/jspm_packages/npm/single-spa@2.0.8 --exclude node_modules --exclude .git --exclude --spec --exclude examples && cd ../spalpatine && npm run build-common-deps && cd ../single-spa"
"build:canopy": "npm run build && rm -rf ../spalpatine/jspm_packages/npm/single-spa@2.0.10 && rsync -av . ../spalpatine/jspm_packages/npm/single-spa@2.0.10 --exclude node_modules --exclude .git --exclude --spec --exclude examples && cd ../spalpatine && npm run build-common-deps && cd ../single-spa"
},

@@ -14,0 +14,0 @@ "repository": "https://github.com/CanopyTax/single-spa",

import { handleChildAppError } from './single-spa-child-app-error.js';
import { ensureJQuerySupport } from './jquery-support.js';
const window = typeof window !== 'undefined' ? window : global;
const window = typeof window !== 'undefined' ? window : (typeof global !== 'undefined' ? global : self);

@@ -6,0 +6,0 @@ const originalAddEventListener = window.addEventListener;

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