-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Summary Merge changes Bits of Good worked on the first half of Spring 2023. Changes include: - Custom Blocks (also known as Recurring Events): a feature that allows users to add their meetings, work shifts, or any recurring weekly events during which they do not want to have classes. - Bug fixes: see the list of bugs [here](https://github.com/orgs/gt-scheduler/projects/1/views/6) --------- Co-authored-by: Samarth Chandna <[email protected]> Co-authored-by: EmilyAL001 <[email protected]> Co-authored-by: Sophia Lin <[email protected]> Co-authored-by: Nathan Gong <[email protected]> Co-authored-by: Yatharth Bhargava <[email protected]> Co-authored-by: EmilyAL001 <[email protected]>
- Loading branch information
1 parent
771709c
commit af7da8d
Showing
54 changed files
with
2,228 additions
and
540 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,3 +53,4 @@ jobs: | |
BRANCH: gh-pages | ||
FOLDER: build | ||
CLEAN: true | ||
CLEAN-EXCLUDE: pr-preview/ |
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ | |
"@fortawesome/react-fontawesome": "^0.2.0", | ||
"@sentry/react": "^6.12.0", | ||
"@sentry/tracing": "^6.12.0", | ||
"@types/react-map-gl": "^6.1.3", | ||
"axios": "^0.21.4", | ||
"cheerio": "^1.0.0-rc.3", | ||
"copy-to-clipboard": "^3.3.1", | ||
|
@@ -28,7 +29,7 @@ | |
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-firebaseui": "^5.0.2", | ||
"react-map-gl": "^5.2.10", | ||
"react-map-gl": "5.2.11", | ||
"react-overlays": "^5.1.1", | ||
"react-resize-panel": "^0.3.5", | ||
"react-scripts": "5.0.1", | ||
|
@@ -79,7 +80,11 @@ | |
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"", | ||
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix", | ||
"format": "prettier \"**/*.{js,jsx,ts,tsx,json}\" --write", | ||
"format:check": "prettier \"**/*.{js,jsx,ts,tsx,json}\" -l" | ||
"format:check": "prettier \"**/*.{js,jsx,ts,tsx,json}\" -l", | ||
"secrets:linux": "echo Enter Bitwarden Password: && read BW_PASSWORD && (bw logout || exit 0) && export BW_SESSION=`bw login [email protected] $BW_PASSWORD --raw` && npm run secrets:get", | ||
"secrets:windows": "set /p BW_PASSWORD=Enter Bitwarden Password:&& (bw logout || VER>NUL) && npm run secrets:login", | ||
"secrets:login": "FOR /F %a IN ('bw login [email protected] %BW_PASSWORD% --raw') DO SET BW_SESSION=%a && npm run secrets:get", | ||
"secrets:get": "bw sync && bw get item gt-scheduler/.env.development.local | fx .notes > \".env\"" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.