Socket
Socket
Sign inDemoInstall

db-watch

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

db-watch - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

5

lib/cache.fixture.js

@@ -71,8 +71,5 @@ "use strict";

parseUpdate: data_fixture_1.parseTestDataUpdate,
})
// parseTestDataUpdate
];
})];
case 1:
_a.sent();
// parseTestDataUpdate
return [2 /*return*/, { cache: cache, loaderSource: loaderSource, watcherSource: watcherSource }];

@@ -79,0 +76,0 @@ }

14

lib/dump.js
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.dumpStream = exports.dump = exports.newSortedArraySink = exports.newArraySink = exports.sorted = void 0;
var through2_1 = __importDefault(require("through2"));
var stream_1 = require("stream");
var tree_stream_1 = require("tree-stream");

@@ -32,5 +29,8 @@ exports.sorted = require('sorted-array-functions');

function dump(stream, sink) {
return dumpStream(stream, through2_1.default.obj(function (data, _enc, callback) {
sink(data);
callback();
return dumpStream(stream, new stream_1.Transform({
objectMode: true,
transform: function (data, _enc, callback) {
sink(data);
callback();
}
}));

@@ -37,0 +37,0 @@ }

{
"name": "db-watch",
"version": "0.0.5",
"version": "0.0.6",
"description": "Database replication, inlcuding Postgres triggers and monitoring with notify listeners",

@@ -31,4 +31,3 @@ "author": "wholebuzz",

"sorted-array-functions": "^1.3.0",
"through2": "^3.0.1",
"tree-stream": "^1.0.14"
"tree-stream": "^1.0.15"
},

@@ -35,0 +34,0 @@ "devDependencies": {

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

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