forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(Feat) [email protected]: Support for breaking changes in Firebase 8.0 (#35
) * Fix for breaking changes in Firebase 8.0 https://stackoverflow.com/questions/64545862/upgrade-to-firebase-js-8-0-0-attempted-import-error-app-is-not-exported-from/64545863 * Update readme and changelog for v1.0.0 also updated peerDependency and devDependency in package.json * updated readme for typo * (chore) Build: Update Build Configs and Example for Upgrade Co-authored-by: Progyan Bhattacharya <[email protected]> Signed-off-by: Progyan Bhattacharya <[email protected]>
- Loading branch information
1 parent
8dc0b65
commit 03910ce
Showing
9 changed files
with
338 additions
and
697 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,19 @@ Good to have: commit or PR links. | |
--> | ||
|
||
## v0.2.0 [#35](https://github.com/interviewstreet/firepad-x/pull/35) | ||
|
||
### Changed | ||
|
||
- Updated peer dependency from `[email protected]` to `[email protected]`. | ||
- No breaking change on API level. | ||
- Improve `README.md` with a beginner friendly guide as well. | ||
|
||
### Fixes | ||
|
||
- Fixed the issue when using firebase from regions other than US would throw [error](https://stackoverflow.com/a/66387384/8556127). | ||
[solution](https://stackoverflow.com/questions/64545862/upgrade-to-firebase-js-8-0-0-attempted-import-error-app-is-not-exported-from/64545863). | ||
|
||
## v0.1.1 - [#30](https://github.com/interviewstreet/firepad-x/pull/24) | ||
|
||
### Fixes | ||
|
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,7 +1,7 @@ | ||
{ | ||
"name": "@hackerrank/firepad", | ||
"description": "Collaborative text editing powered by Firebase", | ||
"version": "0.1.1", | ||
"version": "0.2.0", | ||
"author": { | ||
"email": "[email protected]", | ||
"name": "Progyan Bhattacharya", | ||
|
@@ -11,7 +11,8 @@ | |
"Michael Lehenbauer <[email protected]>", | ||
"Brijesh Bittu <[email protected]>", | ||
"Nishchay Kaushik <[email protected]>", | ||
"Mohanasundar <[email protected]>" | ||
"Mohanasundar <[email protected]>", | ||
"Shubham Shekhar <[email protected]>" | ||
], | ||
"maintainers": [ | ||
{ | ||
|
@@ -54,7 +55,7 @@ | |
"node": ">= 10.17.0" | ||
}, | ||
"peerDependencies": { | ||
"firebase": "7.12.0", | ||
"firebase": "8.8.1", | ||
"monaco-editor": "0.18.1" | ||
}, | ||
"dependencies": { | ||
|
@@ -73,7 +74,7 @@ | |
"child-process-promise": "2.2.1", | ||
"core-js": "3.11.0", | ||
"css-loader": "5.2.4", | ||
"firebase": "7.12.0", | ||
"firebase": "8.8.1", | ||
"git-format-staged": "2.1.1", | ||
"husky": "6.0.0", | ||
"jest": "27.0.3", | ||
|
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,3 +1,4 @@ | ||
import firebase from "firebase"; | ||
import * as monaco from "monaco-editor"; | ||
import { v4 as uuid } from "uuid"; | ||
|
||
|
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.