Permalink
Cannot retrieve contributors at this time
20 lines (20 sloc)
649 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@pkgr/utils/lib/constants.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference types="node" /> | |
export declare const DEV: "development"; | |
export declare const PROD: "production"; | |
export declare const NODE_ENV: string; | |
export declare const __DEV__: boolean; | |
export declare const __PROD__: boolean; | |
export declare const NODE_MODULES_REG: RegExp; | |
export declare const CWD: string; | |
export declare const cjsRequire: NodeRequire; | |
export declare const EXTENSIONS: string[]; | |
export declare const SCRIPT_RUNNERS: { | |
readonly npm: "npx"; | |
readonly pnpm: "pnpm"; | |
readonly yarn: "yarn"; | |
}; | |
export declare const SCRIPT_EXECUTORS: { | |
readonly npm: "npx"; | |
readonly pnpm: "pnpx"; | |
readonly yarn: "yarn dlx"; | |
}; |