aerial-sandbox
Advanced tools
Comparing version 0.0.2 to 0.0.3
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
410764
141