@feflow/cli
Version:
A front-end flow tool.
53 lines • 2.44 kB
TypeScript
export declare const FEFLOW_ROOT = ".fef";
export declare const FEFLOW_BIN = "bin";
export declare const FEFLOW_LIB = "lib";
export declare const FEFLOW_HOME: string;
export declare const LATEST_VERSION = "latest";
export declare const FEF_ENV_PLUGIN_PATH = "FEF_PLUGIN_PATH";
export declare const PROJECT_CONFIG: string[];
export declare const DEVKIT_CONFIG: string[];
/**
* Namespace for collection of "before" hooks
*/
export declare const HOOK_TYPE_BEFORE = "before";
/**
* Namespace for collection of "after" hooks
*/
export declare const HOOK_TYPE_AFTER = "after";
export declare const HOOK_TYPE_ON_COMMAND_REGISTERED = "on_command_registered";
/**
* Emitted when command execution begins
*/
export declare const EVENT_COMMAND_BEGIN = "command begin";
/**
* Emitted when totally finished
*/
export declare const EVENT_DONE = "done";
export declare const UNIVERSAL_MODULES = "universal_modules";
export declare const UNIVERSAL_PKG_JSON = "universal-package.json";
export declare const UNIVERSAL_PLUGIN_CONFIG = "plugin.yml";
export declare const UNIVERSAL_PLUGIN_INSTALL_COLLECTION = "install.db";
export declare const UPGRADE_INTERVAL: number;
export declare const NPM_PLUGIN_INFO_JSON = "npm-plugin-info.json";
export declare const UNIVERSAL_README_CONFIG = "README.md";
export declare const CACHE_FILE = ".feflowCache.yml";
export declare const HEART_BEAT_COLLECTION = "heart-beat.json";
export declare const HEART_BEAT_PID = "heart-beat.pid";
export declare const HEART_BEAT_COLLECTION_LOG = "heart_beat-log.db";
export declare const UPDATE_COLLECTION = "update.json";
export declare const BEAT_GAP = 5000;
export declare const LOG_REPORT_BEAT_GAP = 5000;
export declare const CHECK_UPDATE_GAP: number;
export declare const INVALID_VERSION = "v0.0.0";
export declare const FEFLOW_PLUGIN_LOCAL_PREFIX = "feflow-plugin-local-";
export declare const FEFLOW_PLUGIN_GIT_PREFIX = "feflow-plugin-git-";
export declare const FEFLOW_PLUGIN_PREFIX = "feflow-plugin-";
export declare const LOG_FILE = "logger.log";
export declare const BEAT_KEY = "beat_time";
export declare const BEAT_LOCK = "heart-beat.lock";
export declare const UPDATE_KEY = "update_data";
export declare const UPDATE_LOCK = "update.lock";
export declare const SILENT_ARG = "--slient";
export declare const DISABLE_ARG = "--disable-check";
export declare const FEFLOW_UPDATE_BEAT_PROCESS = "feflow-update-beat-process";
//# sourceMappingURL=constant.d.ts.map