scss: compass, gruntjs und bower installieren Foundation - Importpfad

Ich habe also die folgende Verzeichnisstruktur von yeoman erstellt.

calvin % tree -L 2
.
├── Gruntfile.js
├── app
│   ├── 404.html
│   ├── bower_components
|   |      └── foundation
│   ├── favicon.ico
│   ├── index.html
│   ├── robots.txt
│   ├── scripts
│   ├── styles
|   |      ├── main.css
|   |      └── main.scss     
│   └── views
├── bower.json
├── karma-e2e.conf.js
├── karma.conf.js
├── node_modules
│   ├── connect-livereload
│   ├── grunt
│   ├── grunt-concurrent
│   ├── grunt-contrib-clean
│   ├── grunt-contrib-coffee
│   ├── grunt-contrib-compass
│   ├── grunt-contrib-concat
│   ├── grunt-contrib-connect
│   ├── grunt-contrib-copy
│   ├── grunt-contrib-cssmin
│   ├── grunt-contrib-htmlmin
│   ├── grunt-contrib-imagemin
│   ├── grunt-contrib-jshint
│   ├── grunt-contrib-uglify
│   ├── grunt-contrib-watch
│   ├── grunt-google-cdn
│   ├── grunt-karma
│   ├── grunt-ngmin
│   ├── grunt-open
│   ├── grunt-rev
│   ├── grunt-usemin
│   └── matchdep
├── package.json
└── test
    ├── runner.html
    └── spec

In meinem Styles-Verzeichnis habe ich einemain.scss Datei, die vom Kompass überwacht wird, wie in Gruntjs konfiguriert.

Nachdem ich Foundation installiert habe, überbower install foundation und meine Foundation-Dateien werden in die heruntergeladenbower_components Verzeichnis, wie importiere ich meine Foundation-Klassen inmain.scss ?

Das scheint nicht zu funktionieren

@import "foundation";

Antworten auf die Frage(4)

Ihre Antwort auf die Frage