-
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: drop support for node below 16 (#760)
* feat: update node build version to 16 (#746) * feat: remove all file system interaction directly in cypress-firebase * chore: update badge in readme BREAKING CHANGE: Drop support for Node versions below 16 Build for Node 16 (previously Node 12) Drop support for environment variables auto-prefixed by CI env (such as `STAGE_SERVICE_ACCOUNT`) (#759) Drop support for loading default service account file at ./serviceAccount.json - `GOOGLE_APPLICATION_CREDENTIALS` env variable should be used instead [as described in Firebase docs](https://firebase.google.com/docs/admin/setup#initialize-sdk)
- Loading branch information
1 parent
9e0ee0f
commit e99e3e5
Showing
14 changed files
with
1,793 additions
and
1,678 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": ["github>prescottprue/renovate-config:library"] | ||
"extends": ["github>prescottprue/renovate-config:library"], | ||
"packageRules": [ | ||
{ | ||
"description": "Prevent upgrade of Node build version past 16 (until build version updated)", | ||
"matchPackageNames": ["node", "@types/node"], | ||
"allowedVersions": "^16" | ||
} | ||
] | ||
} |
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.