Socket
Socket
Sign inDemoInstall

@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.13 to 0.0.14

11

dist/Engine.js

@@ -82,5 +82,11 @@ "use strict";

detached: false,
stdio: this.debug ? 'inherit' : 'pipe',
// stdio: '',
cwd: this.cwd,
});
this.child.stderr.on('data', d => {
debug(d.toString());
});
this.child.stdout.on('data', d => {
debug(d.toString());
});
this.child.on('error', e => {

@@ -102,3 +108,4 @@ throw e;

await this.engineReady();
return `http://localhost:${this.port}`;
const url = `http://localhost:${this.port}`;
return url;
}

@@ -105,0 +112,0 @@ /**

2

package.json
{
"name": "@prisma/engine-core",
"version": "0.0.13",
"version": "0.0.14",
"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