File tree Expand file tree Collapse file tree 3 files changed +34
-10
lines changed Expand file tree Collapse file tree 3 files changed +34
-10
lines changed Original file line number Diff line number Diff line change 1
- ### 2.2.0
2
- - Remove need for consuming app to configure ` ember-cli-bootstrap ` addon #87 @ppcano
3
- - Refer to Discord vs. Slack Fixes #85 @sivakumar-kailasam
4
- - updated the blog header component to remove unnecessary complexity #81 @MelSumner
5
- - list component refactor, added contributor invite #80 @MelSumner
6
- - updated the button component and supporting documentation #79 @MelSumner
7
- - Use ember-cli-addon-docs for dummy app #76 @hakilebara
1
+
2
+ 2.3.1 / 2018-10-23
3
+ ==================
4
+
5
+ * Fixing sass error in consuming applications #110 @mansona
6
+
7
+ 2.3.0 / 2018-10-23
8
+ ==================
9
+
10
+ * Fix display of section tags #102 @mansona
11
+ * Update Testing Setup #107 @aklkv
12
+ * Upgrade Ember #105 @aklkv
13
+ * Fixing Mascot Image on es-note component #90 @mansona
14
+ * Include trademark symbol on the Ember logo #96 @BradenLawrence
15
+ * Fix line height of headers #97 @underoot
16
+ * Export ` sass ` modules on ` ember-styleguide ` namespace #88 @ppcano
17
+ * Footer: separate data from the component #89 @ppcano
18
+
19
+ 2.2.0 / 2018-09-12
20
+ ==================
21
+
22
+ * Remove need for consuming app to configure ` ember-cli-bootstrap ` addon #87 @ppcano
23
+ * Refer to Discord vs. Slack Fixes #85 @sivakumar-kailasam
24
+ * updated the blog header component to remove unnecessary complexity #81 @MelSumner
25
+ * list component refactor, added contributor invite #80 @MelSumner
26
+ * updated the button component and supporting documentation #79 @MelSumner
27
+ * Use ember-cli-addon-docs for dummy app #76 @hakilebara
Original file line number Diff line number Diff line change 2
2
const mergeTrees = require ( 'broccoli-merge-trees' ) ;
3
3
const Funnel = require ( 'broccoli-funnel' ) ;
4
4
const path = require ( 'path' ) ;
5
+ const nodeSass = require ( 'node-sass' ) ;
5
6
6
7
module . exports = {
7
8
name : require ( './package' ) . name ,
@@ -31,8 +32,11 @@ module.exports = {
31
32
importBootstrapFont : false ,
32
33
importBootstrapCSS : false
33
34
} ;
35
+
34
36
target . options [ 'ember-bootstrap' ] = target . options [ 'ember-bootstrap' ] || defaultEmberBootStrapOptions ;
35
37
38
+ target . options . sassOptions = target . options . sassOptions || { implementation : nodeSass } ;
39
+
36
40
this . checkPreprocessor ( ) ;
37
41
38
42
this . _super . included . apply ( this , arguments ) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ember-styleguide" ,
3
- "version" : " 2.2.0 " ,
3
+ "version" : " 2.3.1 " ,
4
4
"description" : " Addon to help standardize the ember family of websites" ,
5
5
"keywords" : [
6
6
" ember-addon"
35
35
"ember-cli-htmlbars" : " ^3.0.0" ,
36
36
"ember-cli-sass" : " ^8.0.1" ,
37
37
"ember-svg-jar" : " ^1.2.2" ,
38
- "ember-truth-helpers" : " ^2.1.0"
38
+ "ember-truth-helpers" : " ^2.1.0" ,
39
+ "node-sass" : " ^4.9.4"
39
40
},
40
41
"devDependencies" : {
41
42
"@ember/optional-features" : " ^0.7.0" ,
76
77
"eslint-plugin-ember" : " ^5.2.0" ,
77
78
"eslint-plugin-node" : " ^7.0.1" ,
78
79
"loader.js" : " ^4.7.0" ,
79
- "node-sass" : " ^4.9.4" ,
80
80
"normalize.css" : " ^8.0.0" ,
81
81
"np" : " *" ,
82
82
"qunit-dom" : " ^0.8.0" ,
You can’t perform that action at this time.
0 commit comments