Skip to content

Releases: nadavshatz/ember-cli-foundation-sass

V1.2.0 - A new dawn

25 May 20:31
Compare
Choose a tag to compare

Martial Eagle

28 Jan 23:58
Compare
Choose a tag to compare

Changelog

  • [BUGFIX] Fixed for latest ember-cli 0.1.11
  • [BUGFIX] Fixed that new ember addon:install command works properly

Osprey

04 Nov 16:50
Compare
Choose a tag to compare

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, since ember-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

14 Sep 21:00
Compare
Choose a tag to compare

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

14 Sep 00:13
Compare
Choose a tag to compare

Changelog

  • [FEATURE] Added default app.scss which imports foundation.

Installation

  • npm install ember-cli-foundation-sass --save-dev
  • ember g foundation-sass

Panther

13 Sep 23:52
Compare
Choose a tag to compare

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

13 Sep 01:03
Compare
Choose a tag to compare

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 and foundation.scss into your project for easy customisation.