Releases: nadavshatz/ember-cli-foundation-sass
Releases · nadavshatz/ember-cli-foundation-sass
V1.2.0 - A new dawn
Martial Eagle
Changelog
- [BUGFIX] Fixed for latest ember-cli 0.1.11
- [BUGFIX] Fixed that new
ember addon:install
command works properly
Osprey
Changelog
0.4.1
- [BUGFIX] Make sure custom ember-cli-sass settings in the Brocfile are not getting overwritten.
0.4.0
- [BREAKING ENHANCEMENT] Using addPackagesToProject syntax which requires ember-cli >= 0.1.2.
- [BRAKING ENHANCEMENT] Switched to
ember-cli-sass
, which should fix or at least improve #1 - [BRAKING ENHANCEMENT] Switched to
broccoli-clean-css
, since it generally seems to minify better: CSSO vs clean-css - [BREAKING FEATURE] Removed
foundation-link
generator, sinceember-cli-sass
removes the need for symlinking.
0.3.3
- [ENHANCEMENT] Updated foundation to use
~5.4.7
and broccoli-sass to^0.3.2
.
Morph Butterfly
Changelog
- [BUGFIX] Added
foundation-link
generator so when you clone an existing project you can just create the missing symlink. - [BUGFIX] Added .gitignore file for symlinked
foundation
folder.
Butterfly
Changelog
- [FEATURE] Added default
app.scss
which imports foundation.
Installation
npm install ember-cli-foundation-sass --save-dev
ember g foundation-sass
Panther
Installation
npm install ember-cli-foundation-sass --save-dev
ember g foundation-sass
Changelog
- [FEATURE] Added an option to include Foundation JS and dependencies easier.
- [BUGFIX] Fixed installing of the npm dependencies through adding the
RSVP
library.
Usage of new options
//Brocfile.js
var app = new EmberApp({
'foundation-sass': {
'modernizr': true, //includes modernizer
'fastclick': true, //includes fastclick
'foundationJs': 'all' //Includes the full foundation.js with all modules
}
});
var app = new EmberApp({
'foundation-sass': {
'foundationJs': true //Includes just the core foundation.js without any modules
}
});
var app = new EmberApp({
'foundation-sass': {
'foundationJs': ['tab', 'topbar', 'orbit', 'drodpdown']
//Includes just the core foundation.js with the tab, topbar, orbut and dropdown module
}
});
Unicorn
Installation
npm install ember-cli-foundation-sass --save-dev
ember g foundation-sass
Changelog
- [FEATURE] Added
foundation-sass
generator, that bower installs foundation, symlinks the main folder, the copies the_settings.scss
andfoundation.scss
into your project for easy customisation.