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
import {chunk} from 'lodash'; | |
import * as admin from "firebase-admin"; | |
import * as storage from '@google-cloud/storage'; | |
const gcs = storage(); | |
//https://github.com/GoogleCloudPlatform/google-cloud-node/issues/2254 | |
gcs.interceptors.push({ | |
request: function(reqOpts) { | |
reqOpts.forever = false; | |
return reqOpts |
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
#!/bin/bash | |
# | |
# Check package.json and npm install after git checkout. | |
# Put this to .git/hooks/post-checkout | |
# | |
PREVIOUS_HEAD=$1 | |
NEW_HEAD=$2 | |
BRANCH_SWITCH=$3 |