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

@prisma/engine-core

Package Overview
Dependencies
Maintainers
5
Versions
5964
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@prisma/engine-core - npm Package Compare versions

Comparing version 0.0.36 to 0.0.37

2

dist/NodeEngine.d.ts

@@ -53,3 +53,3 @@ /// <reference types="node" />

*/
stop: () => void;
stop: () => Promise<void>;
/**

@@ -56,0 +56,0 @@ * Use the port 0 trick to get a new port

@@ -56,3 +56,4 @@ "use strict";

*/
this.stop = () => {
this.stop = async () => {
await this.startPromise;
if (this.child) {

@@ -99,6 +100,3 @@ debug(`Stopping Prisma engine`);

debug(`Starting binary at ${this.prismaPath}`);
const env = {
PRISMA_CONFIG,
PRISMA_DML: this.datamodel,
};
const env = Object.assign({}, process.env, { PRISMA_CONFIG, PRISMA_DML: this.datamodel, RUST_BACKTRACE: '1' });
debug(env);

@@ -105,0 +103,0 @@ this.child = child_process_1.spawn(this.prismaPath, [], {

{
"name": "@prisma/engine-core",
"version": "0.0.36",
"version": "0.0.37",
"license": "Apache-2.0",

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

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