@tsdotnet/observable-base
Advanced tools
Comparing version 1.0.20 to 1.0.21
@@ -9,8 +9,8 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
const ObservableBase_1 = (0, tslib_1.__importDefault)(require("./ObservableBase")); | ||
const ObservableBase_1 = tslib_1.__importDefault(require("./ObservableBase")); | ||
exports.ObservableBase = ObservableBase_1.default; | ||
const ObservableNodeBase_1 = (0, tslib_1.__importDefault)(require("./ObservableNodeBase")); | ||
const ObservableNodeBase_1 = tslib_1.__importDefault(require("./ObservableNodeBase")); | ||
exports.ObservableNodeBase = ObservableNodeBase_1.default; | ||
const SubscribableBase_1 = (0, tslib_1.__importDefault)(require("./SubscribableBase")); | ||
const SubscribableBase_1 = tslib_1.__importDefault(require("./SubscribableBase")); | ||
exports.SubscribableBase = SubscribableBase_1.default; | ||
//# sourceMappingURL=observable-base.js.map |
@@ -9,4 +9,4 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
const ArgumentException_1 = (0, tslib_1.__importDefault)(require("@tsdotnet/exceptions/dist/ArgumentException")); | ||
const SubscribableBase_1 = (0, tslib_1.__importDefault)(require("./SubscribableBase")); | ||
const ArgumentException_1 = tslib_1.__importDefault(require("@tsdotnet/exceptions/dist/ArgumentException")); | ||
const SubscribableBase_1 = tslib_1.__importDefault(require("./SubscribableBase")); | ||
// Can be used as a base class, mixin, or simply reference on how to implement the pattern. | ||
@@ -13,0 +13,0 @@ class ObservableBase extends SubscribableBase_1.default { |
@@ -9,3 +9,3 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
const ObservableBase_1 = (0, tslib_1.__importDefault)(require("./ObservableBase")); | ||
const ObservableBase_1 = tslib_1.__importDefault(require("./ObservableBase")); | ||
/** | ||
@@ -12,0 +12,0 @@ * Base class for creating observable chains. |
@@ -9,5 +9,5 @@ "use strict"; | ||
const disposable_1 = require("@tsdotnet/disposable"); | ||
const dispose_1 = (0, tslib_1.__importDefault)(require("@tsdotnet/disposable/dist/dispose")); | ||
const ordered_registry_1 = (0, tslib_1.__importDefault)(require("@tsdotnet/ordered-registry")); | ||
const Subscription_1 = (0, tslib_1.__importDefault)(require("./Subscription")); | ||
const dispose_1 = tslib_1.__importDefault(require("@tsdotnet/disposable/dist/dispose")); | ||
const ordered_registry_1 = tslib_1.__importDefault(require("@tsdotnet/ordered-registry")); | ||
const Subscription_1 = tslib_1.__importDefault(require("./Subscription")); | ||
const NAME = 'SubscribableBase'; | ||
@@ -14,0 +14,0 @@ /** |
{ | ||
"name": "@tsdotnet/observable-base", | ||
"version": "1.0.20", | ||
"version": "1.0.21", | ||
"description": "A simple set of subscription base classes for implementing .NET style observables.", | ||
@@ -32,3 +32,3 @@ "author": "electricessence", | ||
"preversion": "run-p lint test", | ||
"postversion": "git push && git push --tags && npm run-script docs && git commit -m \"Updated docs.\" docs && git push", | ||
"postversion": "git push && git push --tags && npm run-script docs && git add -A && git commit -m \"Updated docs.\" docs && git push", | ||
"test": "mocha -r ts-node/register tests/**/*.ts", | ||
@@ -46,31 +46,31 @@ "validate": "node ./.build/validate-package.js" | ||
"devDependencies": { | ||
"@types/chai": "^4.3.0", | ||
"@types/mocha": "^9.1.0", | ||
"@types/node": "^17.0.17", | ||
"@typescript-eslint/eslint-plugin": "^5.11.0", | ||
"@typescript-eslint/parser": "^5.11.0", | ||
"chai": "^4.3.6", | ||
"@types/chai": "^4.3.4", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^18.11.17", | ||
"@typescript-eslint/eslint-plugin": "^5.46.1", | ||
"@typescript-eslint/parser": "^5.46.1", | ||
"chai": "^4.3.7", | ||
"copyfiles": "^2.4.1", | ||
"eslint": "^8.9.0", | ||
"eslint": "^8.30.0", | ||
"eslint-config-typescript": "^3.0.0", | ||
"eslint-plugin-import": "^2.25.4", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"mocha": "^9.2.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"mocha": "^10.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.5.0", | ||
"typedoc": "^0.22.11", | ||
"typescript": "^4.5.5" | ||
"ts-node": "^10.9.1", | ||
"typedoc": "^0.23.23", | ||
"typescript": "^4.9.4" | ||
}, | ||
"dependencies": { | ||
"@tsdotnet/collection-base": "^2.0.11", | ||
"@tsdotnet/collection-base": "^2.0.13", | ||
"@tsdotnet/common-interfaces": "^1.0.4", | ||
"@tsdotnet/disposable": "^1.1.23", | ||
"@tsdotnet/exceptions": "^1.0.18", | ||
"@tsdotnet/linked-node-list": "^1.3.19", | ||
"@tsdotnet/ordered-registry": "^1.0.21", | ||
"tslib": "^2.3.1" | ||
"@tsdotnet/disposable": "^1.1.24", | ||
"@tsdotnet/exceptions": "^1.0.19", | ||
"@tsdotnet/linked-node-list": "^1.3.20", | ||
"@tsdotnet/ordered-registry": "^1.0.22", | ||
"tslib": "^2.4.1" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
36938