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

@makeflow/cli

Package Overview
Dependencies
Maintainers
7
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@makeflow/cli - npm Package Compare versions

Comparing version 0.3.0-wip.2 to 0.3.0-wip.14

bld/program/commands/env.d.ts

1

bld/program/config.d.ts

@@ -7,1 +7,2 @@ export interface SDKConfig {

export declare function updateConfig(update: Partial<SDKConfig>): void;
export declare function setConfig(config: SDKConfig): void;
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.updateConfig = exports.config = void 0;
exports.setConfig = exports.updateConfig = exports.config = void 0;
const tslib_1 = require("tslib");

@@ -29,2 +29,6 @@ const FS = tslib_1.__importStar(require("fs"));

exports.updateConfig = updateConfig;
function setConfig(config) {
FS.writeFileSync(CONFIG_PATH, `${JSON.stringify(config, undefined, 2)}\n`);
}
exports.setConfig = setConfig;
//# sourceMappingURL=config.js.map

4

package.json
{
"name": "@makeflow/cli",
"version": "0.3.0-wip.2",
"version": "0.3.0-wip.14",
"description": "Command line interface for Makeflow.",

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

},
"gitHead": "6227cc33d063f78d8b77f8bb5992b7637243b75d"
"gitHead": "a4f7fff32ddec7e23ee3f8f115bc2df1da7f5315"
}

@@ -39,1 +39,5 @@ import * as FS from 'fs';

}
export function setConfig(config: SDKConfig): void {
FS.writeFileSync(CONFIG_PATH, `${JSON.stringify(config, undefined, 2)}\n`);
}

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