-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
Description
Version info
3.18.4
Platform Information
Linux
Steps to reproduce
- Create a firebase project
- Create firebase/database.rules.bolt
- Configure firebase-db to use the bolt rules:
{ "database": { "rules": "firebase/database.rules.bolt" } }
- Install firebase-tools and firebase-bolt as project dependencies
npm i firebase-tools firebase-bold
- Attempt to deploy
Expected behavior
The bolt rules are compiled and loaded to the project
Actual behavior
An error is thrown that firebase-bolt must be installed globally
Notes:
- The spawn of firebase-bolt only looks in the path: https://github.com/firebase/firebase-tools/blob/02f5e2eec9c558253e193e577fa45eeba1d9329a/lib/parseBoltRules.js
mhuebert