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

@compas/cli

Package Overview
Dependencies
Maintainers
1
Versions
196
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@compas/cli - npm Package Compare versions

Comparing version 0.7.3 to 0.7.4

4

package.json
{
"name": "@compas/cli",
"version": "0.7.3",
"version": "0.7.4",
"description": "CLI containing utilities and simple script runner",

@@ -32,3 +32,3 @@ "exports": {

"dependencies": {
"@compas/stdlib": "0.7.3",
"@compas/stdlib": "0.7.4",
"c8": "8.0.1",

@@ -35,0 +35,0 @@ "chokidar": "3.5.3",

@@ -382,3 +382,3 @@ import { environment, exec, isNil, spawn } from "@compas/stdlib";

if (command.trim().startsWith("DROP DATABASE")) {
pgCommand += `${command.trim()};`;
pgCommand += `${command.trim()}`;
}

@@ -388,7 +388,7 @@ }

for (const project of projects) {
pgCommand += `CREATE DATABASE ${project};`;
pgCommand += `CREATE DATABASE "${project}";`;
}
const { exitCode, ...dockerLogs } = await exec(
`echo "${pgCommand}" | docker exec -i ${postgresContainer} psql --user postgres`,
`echo '${pgCommand}' | docker exec -i ${postgresContainer} psql --user postgres`,
);

@@ -395,0 +395,0 @@

@@ -14,2 +14,2 @@ /// <reference types="node" resolution-mode="require"/>

export function runTestsInProcess(testConfig: import("./config.js").TestConfig): Promise<number>;
export const workerFile: import("url").URL;
export const workerFile: import("node:url").URL;
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