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

aerial-sandbox

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aerial-sandbox - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

package.json
{
"name": "aerial-sandbox",
"version": "0.0.2",
"version": "0.0.3",
"description": "sandbox environment for running javascript",

@@ -11,3 +11,3 @@ "repository": {

"scripts": {
"test": "mocha ./lib/**/*.js",
"test": "mocha ./lib/**/*-test.js",
"build": "rm -rf lib; tsc"

@@ -14,0 +14,0 @@ },

@@ -424,3 +424,3 @@ import path = require("path");

const changeWatchers = this._changeWatchers = DisposableCollection.create() as DisposableCollection;
const changeWatchers = this._changeWatchers = new DisposableCollection();

@@ -427,0 +427,0 @@ // included dependencies aren't self contained, so they don't get a Dependency object. For

@@ -67,3 +67,3 @@ import memoize = require("memoizee");

this.$strategy = this._strategy;
this._collection = ActiveRecordCollection.create(this.collectionName, this.$kernel, (source: IDependencyData) => {
this._collection = new ActiveRecordCollection(this.collectionName, this.$kernel, (source: IDependencyData) => {
return this.$kernel.inject(new Dependency(source, this.collectionName, this));

@@ -70,0 +70,0 @@ });

@@ -56,3 +56,3 @@ import memoize = require("memoizee");

public $didInject() {
this._collection = ActiveRecordCollection.create(this.collectionName, this._kernel, (source: IFileCacheItemData) => {
this._collection = new ActiveRecordCollection(this.collectionName, this._kernel, (source: IFileCacheItemData) => {
return this._kernel.inject(new FileCacheItem(source, this.collectionName));

@@ -59,0 +59,0 @@ });

Sorry, the diff of this file is not supported yet

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