Socket
Socket
Sign inDemoInstall

@embedded-postgres/darwin-arm64

Package Overview
Dependencies
0
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 16.1.1-beta.9 to 16.1.1-beta.11

14

dist/index.js

@@ -1,10 +0,4 @@

"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.postgres = exports.initdb = exports.pg_ctl = void 0;
const path_1 = __importDefault(require("path"));
exports.pg_ctl = path_1.default.resolve(__dirname, '..', 'native', 'bin', 'pg_ctl');
exports.initdb = path_1.default.resolve(__dirname, '..', 'native', 'bin', 'initdb');
exports.postgres = path_1.default.resolve(__dirname, '..', 'native', 'bin', 'postgres');
import path from 'path';
export const pg_ctl = path.resolve(__dirname, '..', 'native', 'bin', 'pg_ctl');
export const initdb = path.resolve(__dirname, '..', 'native', 'bin', 'initdb');
export const postgres = path.resolve(__dirname, '..', 'native', 'bin', 'postgres');
{
"name": "@embedded-postgres/darwin-arm64",
"version": "16.1.1-beta.9",
"version": "16.1.1-beta.11",
"description": "",
"main": "dist/index.js",
"exports": "./dist/index.js",
"type": "module",
"scripts": {

@@ -22,4 +23,4 @@ "start": "tsc -w",

"devDependencies": {
"@embedded-postgres/downloader": "^16.1.1-beta.9",
"@embedded-postgres/symlink-reader": "^16.1.1-beta.9"
"@embedded-postgres/downloader": "^16.1.1-beta.11",
"@embedded-postgres/symlink-reader": "^16.1.1-beta.11"
},

@@ -34,3 +35,6 @@ "publishConfig": {

],
"gitHead": "14f9dcd77fba3d22ccd398cb03ba3cc29c16e8bc"
"engines": {
"node": ">=16"
},
"gitHead": "a3d6df1a34e74783573b2d372c7834f98c51e75f"
}

@@ -1,3 +0,3 @@

const fs = require('fs/promises');
const path = require('path');
import fs from 'fs/promises';
import path from 'path';

@@ -15,3 +15,4 @@ const symlinkFile = path.join(process.cwd(), 'native', 'pg-symlinks.json');

const symlinks = await fs.readFile(symlinkFile, { encoding: 'utf-8' })
.then(JSON.parse);
.then(JSON.parse)
.catch(() => ([]));

@@ -18,0 +19,0 @@ // Re-hydrate all of them

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc