UNPKG

1.75 kBTypeScriptView Raw
1export declare const FEFLOW_ROOT = ".fef";
2export declare const FEFLOW_BIN = "bin";
3export declare const FEFLOW_LIB = "lib";
4export declare const LATEST_VERSION = "latest";
5export declare const FEF_ENV_PLUGIN_PATH = "FEF_PLUGIN_PATH";
6export declare const PROJECT_CONFIG: string[];
7export declare const DEVKIT_CONFIG: string[];
8/**
9 * Namespace for collection of "before" hooks
10 */
11export declare const HOOK_TYPE_BEFORE = "before";
12/**
13 * Namespace for collection of "after" hooks
14 */
15export declare const HOOK_TYPE_AFTER = "after";
16export declare const HOOK_TYPE_ON_COMMAND_REGISTERED = "on_command_registered";
17/**
18 * Emitted when command execution begins
19 */
20export declare const EVENT_COMMAND_BEGIN = "command begin";
21/**
22 * Emitted when totally finished
23 */
24export declare const EVENT_DONE = "done";
25export declare const UNIVERSAL_MODULES = "universal_modules";
26export declare const UNIVERSAL_PKG_JSON = "universal-package.json";
27export declare const UNIVERSAL_PLUGIN_CONFIG = "plugin.yml";
28export declare const UNIVERSAL_PLUGIN_INSTALL_COLLECTION = "install.db";
29export declare const UPGRADE_INTERVAL: number;
30export declare const NPM_PLUGIN_INFO_JSON = "npm-plugin-info.json";
31export declare const UNIVERSAL_README_CONFIG = "README.md";
32export declare const CACHE_FILE = ".feflowCache.yml";
33export declare const HEART_BEAT_COLLECTION = "heart-beat.db";
34export declare const UPDATE_COLLECTION = "update.db";
35export declare const BEAT_GAP = 5000;
36export declare const CHECK_UPDATE_GAP: number;
37export declare const INVALID_VERSION = "v0.0.0";
38export declare const FEFLOW_PLUGIN_LOCAL_PREFIX = "feflow-plugin-local-";
39export declare const FEFLOW_PLUGIN_GIT_PREFIX = "feflow-plugin-git-";
40export declare const FEFLOW_PLUGIN_PREFIX = "feflow-plugin-";