Skip to content

Commit

Permalink
Fix theme export for SCSS/LESS
Browse files Browse the repository at this point in the history
  • Loading branch information
mkszepp committed Jan 4, 2024
1 parent 2327758 commit a1af227
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ember-power-select/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@
"./scss/base.scss": "./scss/base.scss",
"./less/variables.less": "./less/variables.less",
"./scss/variables.scss": "./scss/variables.scss",
"./themes/bootstrap.less": "./less/themes/bootstrap.less",
"./themes/bootstrap.scss": "./scss/themes/bootstrap.scss",
"./themes/material.less": "./less/themes/material.less",
"./themes/material.scss": "./scss/themes/material.scss",
"./themes/*": "./themes/*",
"./vendor/*": "./vendor/*"
},
"typesVersions": {
Expand All @@ -52,6 +49,7 @@
"dist",
"less",
"scss",
"themes",
"vendor"
],
"scripts": {
Expand Down
5 changes: 5 additions & 0 deletions ember-power-select/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@import './less/variables';

@import 'ember-basic-dropdown/_index.less';

@import './less/base';
1 change: 1 addition & 0 deletions ember-power-select/themes/bootstrap.less
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import '../less/themes/bootstrap.less';
1 change: 1 addition & 0 deletions ember-power-select/themes/bootstrap.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import '../scss/themes/bootstrap.scss';
1 change: 1 addition & 0 deletions ember-power-select/themes/material.less
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import '../less/themes/material.less';
1 change: 1 addition & 0 deletions ember-power-select/themes/material.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@import '../scss/themes/material.scss';

0 comments on commit a1af227

Please sign in to comment.