Skip to content

Instantly share code, notes, and snippets.

@aortbals
Created October 19, 2014 13:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aortbals/829d4401d211e3b1d87c to your computer and use it in GitHub Desktop.
Save aortbals/829d4401d211e3b1d87c to your computer and use it in GitHub Desktop.
ember-cll, Bourbon & Bourbon Neat

Dependency Notes

Bourbon 4.0.1 requires SASS 3.3, which libsass (pre 3.0) did not support. Neat 1.6 also requires SASS 3.3. I'm using the last compatible versions that work with libsass < 3.0. See #375.

With the recent release of libsass 3.0, this should probably be re-evaluated.

{
"name": "bourbon & neat",
"dependencies": {
"bourbon": "3.2.3",
"neat": "1.5.1",
...
}
}
/* global require, module */
var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var mergeTrees = require('broccoli-merge-trees');
var app = new EmberApp({
trees: {
styles: mergeTrees([
'bower_components/bourbon/dist',
'bower_components/neat/app/assets/stylesheets'
'app/styles'
],
{ overwrite: true })
},
getEnvJSON: require('./config/environment')
});
module.exports = app.toTree();
{
"name": "bourbon & neat",
"version": "0.0.0",
"private": true,
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"start": "ember server",
"build": "ember build",
"test": "ember test",
"postinstall": "bower install"
},
"repository": "https://github.com/stefanpenner/ember-cli",
"engines": {
"node": ">= 0.10.0"
},
"author": "",
"license": "MIT",
"devDependencies": {
"broccoli-sass": "^0.2.0",
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment