New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sol-x/couchdb-migration-store

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

@sol-x/couchdb-migration-store - npm Package Compare versions

Comparing version

to
1.0.2

16

dist/index.js

@@ -31,3 +31,9 @@ "use strict";

const dataToStore = { _id: "1", lastRun, migrations };
await this.waitForCouchdb();
try {
await this.waitForCouchdb();
}
catch (err) {
callback(err);
return;
}
const nano = nano_1.default(this.couchDbUrl);

@@ -52,3 +58,9 @@ try {

async load(callback) {
await this.waitForCouchdb();
try {
await this.waitForCouchdb();
}
catch (err) {
callback(err);
return;
}
const nano = nano_1.default(this.couchDbUrl);

@@ -55,0 +67,0 @@ try {

2

package.json
{
"name": "@sol-x/couchdb-migration-store",
"version": "1.0.1",
"version": "1.0.2",
"description": "couchdb migration store for node-migrate",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -11,4 +11,4 @@ import Nano from "nano";

type MigrationSaveCallback = (err?: Error) => {};
type MigrationLoadCallback = (err: Error | undefined, data?: MigrationData | {}) => {};
type MigrationSaveCallback = (err?: Error) => void;
type MigrationLoadCallback = (err: Error | undefined, data?: MigrationData | {}) => void;

@@ -45,3 +45,8 @@ class CouchDbMigrationStore {

await this.waitForCouchdb();
try {
await this.waitForCouchdb();
} catch (err) {
callback(err);
return;
}

@@ -66,3 +71,8 @@ const nano = Nano(this.couchDbUrl);

async load(callback: MigrationLoadCallback): Promise<void> {
await this.waitForCouchdb();
try {
await this.waitForCouchdb();
} catch (err) {
callback(err);
return;
}

@@ -69,0 +79,0 @@ const nano = Nano(this.couchDbUrl);

Sorry, the diff of this file is not supported yet