-
Notifications
You must be signed in to change notification settings - Fork 11
Fix build deprecation warnings #1317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
874c3d8
Fix react-toastify Sass @import deprecation warnings
cursoragent 302daac
Fix material-symbols Sass deprecations by using CSS asset
cursoragent 91525a9
Fix Sass legacy JS API deprecation in webpack build
cursoragent 5365e58
Handle Plotly Sass @import deprecations
cursoragent afc29a2
Update caniuse-lite to clear Browserslist outdated warning
cursoragent 8bc11b8
Update AGENTS guidance for changelog and commit quality
cursoragent 5cdb6a4
Add in plotly sample project
zetter-rpf File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,8 @@ | ||
| @forward "@raspberrypifoundation/design-system-react/scss/design-system-core"; | ||
| @forward "../../../node_modules/@raspberrypifoundation/design-system-react/dist/scss/design-system-core.scss"; | ||
| @use "../../../node_modules/react-tabs/style/react-tabs.css"; | ||
| @use "../../../node_modules/react-toggle/style.css"; | ||
| @use "../../../node_modules/prismjs/plugins/line-numbers/prism-line-numbers.css"; | ||
| @use "../../../node_modules/prismjs/plugins/line-highlight/prism-line-highlight.css"; | ||
| @use "../../../node_modules/material-symbols/sharp.scss"; | ||
| @use "../../../node_modules/plotly.js/src/css/style.scss" as plotlyStyle; | ||
| @use "../../../node_modules/react-toastify/dist/ReactToastify.css"; | ||
| @use "../../../node_modules/material-symbols/sharp.css"; | ||
| @use "../../../node_modules/plotly.js/dist/plotly.css" as plotlyStyle; |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| { | ||
| "identifier": "python-plotly", | ||
| "project_type": "python", | ||
| "locale": "en", | ||
| "name": "Python Plotly", | ||
| "user_id": null, | ||
| "instructions": null, | ||
| "components": [ | ||
| { | ||
| "id": "42b4cdc9-d935-4a3d-b39a-32eb44c3ebfe", | ||
| "name": "main", | ||
| "extension": "py", | ||
| "content": "import plotly.express as px\ndf = px.data.gapminder().query(\"country=='Canada'\")\nfig = px.line(df, x=\"year\", y=\"lifeExp\", title='Life expectancy in Canada')\nfig.show()" | ||
| } | ||
| ], | ||
| "image_list": [], | ||
| "videos": [], | ||
| "audio": [] | ||
| } |
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is this linked to the deprecation warnings?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah I guess you were looking at testing it. Makes more sense.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that was exactly it (I do put context into commit messages if it's ever not clear in the PR itself)