UNPKG

projen

Version:

CDK for software projects

24 lines (23 loc) 1.08 kB
export declare const DEFAULT_PROJEN_RC_JS_FILENAME = ".projenrc.js"; export declare const PROJEN_DIR = ".projen"; export declare const PROJEN_MARKER: string; /** * The current version of the `.projen/tasks.json` manifest schema. * * Bump this whenever the manifest structure changes in a way the task runtime * needs to be aware of. The runtime uses it to detect manifests produced by a * newer (potentially incompatible) version of projen. Manifests generated by * older versions of projen omit it and are treated as "legacy". */ export declare const TASKS_MANIFEST_VERSION = 3; /** * The name of a project's default task. Running the projen CLI with no * arguments executes this task (it synthesizes the project). * * This constant lives here (rather than on `Project`) so the CLI can refer to * it without importing the entire project library just to read one string. * `Project.DEFAULT_TASK` remains the public API for this value. */ export declare const DEFAULT_TASK = "default"; export declare const IS_TEST_RUN: boolean; export declare const PROJEN_VERSION: any;