有没有办法通过 cli 命令 () 使用这种架构的 Firebase/Google 云功能firebase deploy --only functions
?
预期的:
.
└── functions/
├── function_using_axios/
│ ├── node_modules/
│ ├── package.json
│ └── index.js
└── function_using_moment/
├── node_modules/
├── package.json
└── index.js
目前,我的档案看起来像这样:
.
└── functions/
├── node_modules/
├── package.json
├── index.js
├── function_using_axios.js
└── function_using_moment.js
事实是,对于某些功能,我有很多无用的包依赖项。它增加了冷启动时间。
我知道这可以通过 Web UI 实现。
网页界面示例:
My Current Archi 在 WEB UI 上看到,所有功能的一个包:
任何想法 ?
谢谢。