@nicnocquee/dataqueue 1.18.0 → 1.18.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cli.cjs +0 -7
  2. package/package.json +1 -1
package/cli.cjs CHANGED
@@ -27,13 +27,6 @@ if (command === 'migrate') {
27
27
  const migrationsDir = path.join(__dirname, 'migrations');
28
28
  const dbUrl = process.env.PG_DATAQUEUE_DATABASE;
29
29
 
30
- if (!dbUrl) {
31
- console.error(
32
- 'Error: PG_DATAQUEUE_DATABASE environment variable must be set to your Postgres connection string.',
33
- );
34
- process.exit(1);
35
- }
36
-
37
30
  // Parse search_path from dbUrl if present
38
31
  let schemaArg = [];
39
32
  let hasCustomSchema = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nicnocquee/dataqueue",
3
- "version": "1.18.0",
3
+ "version": "1.18.1",
4
4
  "description": "PostgreSQL-based job queue for Node.js applications with support for serverless environments",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",