@makeflow/cli
Advanced tools
Comparing version 0.3.0-wip.2 to 0.3.0-wip.14
@@ -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 |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36565
42
825