Skip to content
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

RSTUDIO-538: Switch to the sass library #1653

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prs-lint-build-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
MOCHA_FILE: pre-test-results.xml
run: npm test -- --reporter mocha-github-actions-reporter
- name: Build the package
run: npx electron-builder -mlw --publish never
run: npx electron-builder -m --publish never
- name: Archive the .dmg for macOS
uses: actions/upload-artifact@v2
with:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## vNext (TBD)

### Enhancements
* Added support for collections in mixed.

### Fixed
* None

### Internals
* Upgraded Realm to `v12.9.0`. ([#1651](https://github.com/realm/realm-studio/pull/1651)).

## 15.0.1 (2024-04-23)

### Fixed
Expand Down
7 changes: 6 additions & 1 deletion configs/webpack.renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ module.exports = (env, argv) => {
'style-loader',
'css-loader',
'resolve-url-loader',
'sass-loader',
{
loader: 'sass-loader',
options: {
sassOptions: { quietDeps: true },
},
},
],
},
{
Expand Down
Loading
Loading