Socket
Socket
Sign inDemoInstall

@cocreate/cli

Package Overview
Dependencies
Maintainers
1
Versions
223
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@cocreate/cli - npm Package Compare versions

Comparing version 1.39.1 to 1.39.2

2

package.json
{
"name": "@cocreate/cli",
"version": "1.39.1",
"version": "1.39.2",
"description": "Polyrepo management bash CLI tool. Run all git commands and yarn commands on multiple repositories. Also includes a few custom macros for cloning, installing, etc.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -8,5 +8,5 @@ const file = require('@cocreate/file')

if (!args.length) {
let configFile = path.resolve(process.cwd(), 'CoCreate.config.js');
if (!CoCreateConfig && fs.existsSync(configFile)) {
CoCreateConfig = require(configFile);
let configPath = path.resolve(process.cwd(), 'CoCreate.config.js');
if (!CoCreateConfig && fs.existsSync(configPath)) {
CoCreateConfig = require(configPath);
} else {

@@ -17,3 +17,3 @@ console.log('CoCreate.config.js could not be found.')

await file(CoCreateConfig)
await file(CoCreateConfig, configPath)

@@ -20,0 +20,0 @@ } else {

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc