We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b391bc commit 7adb4beCopy full SHA for 7adb4be
index.js
@@ -60,8 +60,8 @@ module.exports = {
60
61
this.includeIcons = addonConfig.includeIcons !== false;
62
63
- this.hasSass =
64
- !!app.registry.availablePlugins['ember-cli-sass'] || !!app.registry.availablePlugins['ember-cli-sass-less'];
+ const addons = app.project?.addonPackages || app.registry?.availablePlugins;
+ this.hasSass = !!addons['ember-cli-sass'] || !!addons['ember-cli-sass-less'];
65
66
// CSS Files
67
if (!this.hasSass) {
screwdriver.yaml
@@ -2,7 +2,7 @@ cache:
2
pipeline: [~/.yarn]
3
4
shared:
5
- image: node:14
+ image: node:18
6
7
jobs:
8
main:
0 commit comments