mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +00:00
16 lines
341 B
Plaintext
16 lines
341 B
Plaintext
|
#!/usr/bin/env node
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
const message = `
|
||
|
======== WARNING! ========
|
||
|
|
||
|
This upgrade of firebase-functions contains breaking changes if you are upgrading from a version below v1.0.0.
|
||
|
|
||
|
To see a complete list of these breaking changes, please go to:
|
||
|
|
||
|
https://firebase.google.com/docs/functions/beta-v1-diff
|
||
|
`;
|
||
|
|
||
|
console.log(message);
|