Skip to content

Commit

Permalink
Merge pull request #8059 from jrjohnson/i5577-ignore-sass-deprecations
Browse files Browse the repository at this point in the history
Silence the Mixed Declarations SASS Deprecation
  • Loading branch information
stopfstedt authored Aug 8, 2024
2 parents ab4ad5e + 25485cc commit 5f48cd0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/frontend/ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ module.exports = async function (defaults) {
minifyCSS: {
enabled: false,
},
sassOptions: {
silenceDeprecations: ['mixed-decls'],
},
};

const app = new EmberApp(defaults, config);
Expand Down
3 changes: 3 additions & 0 deletions packages/lti-course-manager/ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ module.exports = async function (defaults) {
enabled: true,
},
hinting: isTestBuild,
sassOptions: {
silenceDeprecations: ['mixed-decls'],
},
};
const app = new EmberApp(defaults, config);

Expand Down
3 changes: 3 additions & 0 deletions packages/lti-dashboard/ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ module.exports = async function (defaults) {
enabled: true,
},
hinting: isTestBuild,
sassOptions: {
silenceDeprecations: ['mixed-decls'],
},
};
const app = new EmberApp(defaults, config);

Expand Down
3 changes: 3 additions & 0 deletions packages/test-app/ember-cli-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ module.exports = async function (defaults) {
autoImport: {
watchDependencies: ['ilios-common'],
},
sassOptions: {
silenceDeprecations: ['mixed-decls'],
},
babel: {
plugins: [
require.resolve('ember-auto-import/babel-plugin'),
Expand Down

0 comments on commit 5f48cd0

Please sign in to comment.