Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

elysia-auth-drizzle

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elysia-auth-drizzle - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

8

package.json
{
"name": "elysia-auth-drizzle",
"version": "1.0.0",
"version": "1.0.1",
"main": "./dist/index.js",

@@ -12,8 +12,10 @@ "typings": "dist/index.d.ts",

"migration:make": "drizzle-kit generate:pg",
"migration:up": "drizzle-kit push:pg",
"migration:up": "bun test/utils/migrate.ts",
"migration:studio": "drizzle-kit studio"
},
"peerDependencies": {
"elysia": "^1.0.9"
},
"dependencies": {
"@bogeychan/elysia-logger": "^0.0.19",
"elysia": "1.0.9",
"jsonwebtoken": "^9.0.2",

@@ -20,0 +22,0 @@ "unify-errors": "^1.2.227"

@@ -5,6 +5,9 @@ import { migrate } from 'drizzle-orm/postgres-js/migrator';

// This will run migrations on the database, skipping the ones already applied
await migrate(db, { migrationsFolder: './drizzle' });
(async () => {
// This will run migrations on the database, skipping the ones already applied
await migrate(db, { migrationsFolder: './drizzle' });
// Don't forget to close the connection, otherwise the script will hang
await connection.end();
// Don't forget to close the connection, otherwise the script will hang
await connection.end();
process.exit(1);
})();

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