Skip to content

Commit dd08165

Browse files
Merge branch 'master' into feature/hbs-linting
2 parents f87af14 + 2fca1ab commit dd08165

File tree

3 files changed

+34
-10
lines changed

3 files changed

+34
-10
lines changed

CHANGELOG.md

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,27 @@
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

index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
const mergeTrees = require('broccoli-merge-trees');
33
const Funnel = require('broccoli-funnel');
44
const path = require('path');
5+
const nodeSass = require('node-sass');
56

67
module.exports = {
78
name: require('./package').name,
@@ -31,8 +32,11 @@ module.exports = {
3132
importBootstrapFont: false,
3233
importBootstrapCSS: false
3334
};
35+
3436
target.options['ember-bootstrap'] = target.options['ember-bootstrap'] || defaultEmberBootStrapOptions;
3537

38+
target.options.sassOptions = target.options.sassOptions || { implementation: nodeSass };
39+
3640
this.checkPreprocessor();
3741

3842
this._super.included.apply(this, arguments);

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-styleguide",
3-
"version": "2.2.0",
3+
"version": "2.3.1",
44
"description": "Addon to help standardize the ember family of websites",
55
"keywords": [
66
"ember-addon"
@@ -35,7 +35,8 @@
3535
"ember-cli-htmlbars": "^3.0.0",
3636
"ember-cli-sass": "^8.0.1",
3737
"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"
3940
},
4041
"devDependencies": {
4142
"@ember/optional-features": "^0.7.0",
@@ -76,7 +77,6 @@
7677
"eslint-plugin-ember": "^5.2.0",
7778
"eslint-plugin-node": "^7.0.1",
7879
"loader.js": "^4.7.0",
79-
"node-sass": "^4.9.4",
8080
"normalize.css": "^8.0.0",
8181
"np": "*",
8282
"qunit-dom": "^0.8.0",

0 commit comments

Comments
 (0)