Skip to content

Commit

Permalink
update ember and bulma
Browse files Browse the repository at this point in the history
  • Loading branch information
GerritSommer committed Mar 3, 2018
1 parent 24ad327 commit 6bd32c6
Show file tree
Hide file tree
Showing 5 changed files with 11,275 additions and 9 deletions.
8 changes: 1 addition & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You need to have ember-cli-sass installed, otherwise the addon will install it a

## Update

- 0.0.5 The order of the import statements in the README is fixed.
- 0.2.0 Updated Ember cli to 3.0.0 and bulma 0.6.2

## Usage

Expand All @@ -47,12 +47,6 @@ The addon will try to add the general import statements to your `app.scss` file
@import "ember-bulma-css/layout/_all";
```

To import all files:

```sass
// @import "ember-bulma-css/bulma"
```

Instead of importing all modules, you can import them individually:

```sass
Expand Down
8 changes: 8 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ const mergeTrees = require('broccoli-merge-trees');

module.exports = {
name: 'ember-bulma-css',
isDevelopingAddon() {
return true;
},


treeForStyles: function treeForStyles(tree) {
const styleTrees = [];
Expand All @@ -21,4 +25,8 @@ module.exports = {

return mergeTrees(styleTrees, { overwrite: true });
},

included: function(/* app */) {
this._super.included.apply(this, arguments);
}
};
Loading

0 comments on commit 6bd32c6

Please sign in to comment.