npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-foundation-sass

v1.0.0

Published

foundation addon for ember-cli.

Downloads

41

Readme

Ember Foundation SASS Addon

This addon automates the steps to include SASS with Foundation 5.5.3 into your ember-cli app using ember-cli-sass as well as simplifying the customization of the settings and which components you want to include.

It also installs broccoli-clean-css, purely for convenience since it generally seems to lead to the best minification results: http://goalsmashers.github.io/css-minification-benchmark/.

Usage

Installation

  • ember install ember-foundation-sass

Installation (ember-cli < 1.0.0)

  • npm install ember-foundation-sass --save-dev
  • ember g ember-foundation-sass
  • If you clone an existing project with this addon, just run npm i && bower i.

What It Does

Running the blueprint installs Foundation 5.5.3 via Bower, copies over the _settings.scss as well as the foundation.scss to your app/styles folder. It also creates a default app.scss that imports the _settings.scss as well as the _foundation.scss, so you can serve the app immediately. Lastly, it installs the already mentioned dependencies ember-cli-sass and broccoli-clean-css.

This setup is made so you don't have to worry about how to customize Foundation, but just lets you do it. Furthermore ember-cli-sass helps that the foundation import statements (in the _foundation.scss) 'just' work.

Options

This addon provides an API to simplify adding the Foundation JavaScript modules and dependencies:

//ember-cli-build.js
//Includes modernizr, fastclick and the full foundation.js with all modules
var app = new EmberApp({
  'ember-foundation-sass': {
    'modernizr': true,
    'fastclick': true,
    'foundationJs': 'all'
  },
  'sassOptions': { //include foundation scss
    'includePaths': [
      'bower_components/foundation-sites/scss'
    ]
  }
});

//Includes the core foundation.js with the tab, topbar, orbit and dropdown module
var app = new EmberApp({
  'ember-foundation-sass': {
    'foundationJs': ['tab', 'topbar', 'orbit', 'dropdown']
  },
  'sassOptions': { //include foundation scss
    'includePaths': [
      'bower_components/foundation-sites/scss'
    ]
  }
});

//Includes just the core foundation.js without any modules
var app = new EmberApp({
  'ember-foundation-sass': {
    'foundationJs': true
  },
  'sassOptions': { //include foundation scss
    'includePaths': [
      'bower_components/foundation-sites/scss'
    ]
  }
});

Whenever you use any foundation JS module in your code, make sure that component includes the following:

import Ember from 'ember';

export default Ember.Component.extend({
  didInsertElement: function() {
    this.$().foundation(); //or Ember.$(document).foundation();
  }
});

Credits/Info

This addon is copy of ember-cli-foundation-sass. Since the repository is no more maintained and not supported by latest version of ember-cli so I have created ember-foundation-sass to support latest ember-cli version.