有没有办法让Firebase命令行简单地刷新服务器,因为我将更改应用于类似于nodemon对nodeJS的代码?我正在使用Polymer for web。
答案 0 :(得分:8)
我正在使用带有firebase云功能的nodemon, as firebase-tools@3.17.4 (当前)
firebase serve --only functions
仅在index.js
可以使用 nodemon --exec
标志
nodemon --exec firebase serve --only functions
答案 1 :(得分:4)
除了@grigson之外,您还可以使用exec标志运行package.json脚本,例如:
$loop->index
其中 serve 是函数package.json中的命令(即
nodemon -e ts --exec "npm run serve"
运行此命令,nodemon还将在服务之前运行 build 。 -e标志告诉nodemon注意扩展名为.ts的文件的更改。
答案 2 :(得分:0)
目前这不是Firebase CLI的一项功能,但它听起来像是有用的东西。请file a feature request。