mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-06-14 09:38:58 +08:00
20 lines
692 B
JavaScript
20 lines
692 B
JavaScript
module.exports = {
|
|
/*
|
|
Headless mode forces the firepit builds to exactly imitate firebase-tools,
|
|
so the resulting binary "firebase" is a drop in replacement for the script
|
|
installed via npm. This is the behavior for CI / Cloud Shell / Docker etc.
|
|
|
|
When headless mode is disabled, the "double click" experience is enabled
|
|
which allows the binary to spawn a terminal on Windows and Mac. The is the
|
|
behavior for desktop users.
|
|
*/
|
|
headless: false,
|
|
|
|
/*
|
|
This is generally set to "firebase-tools@latest" however a custom value
|
|
can be supplied for EAPs which would like to have builds pointed at
|
|
specific tgz bundles.
|
|
*/
|
|
firebase_tools_package: ""
|
|
};
|