juliancwirko / generator-zf5

Yeoman generator for Zurb Foundation 5
https://www.npmjs.com/package/generator-zf5
MIT License
204 stars 29 forks source link

Misspelled file - broken reference #20

Closed ghost closed 10 years ago

ghost commented 10 years ago

In app/scss/app.scss, this line is incorrect:

"foundation/components/switch",

It should be:

"foundation/components/switches",
juliancwirko commented 10 years ago

Yes this is a change in Foundation 5.3.0 but generator-zf5 is actual, but You probably have an older version of app.scss.. just copy all Foundation includes from here: https://github.com/juliancwirko/generator-zf5/blob/master/app/templates/scss/app.scss or update generator-zf5 by 'npm update -g generator-zf5' and init your project once again

ghost commented 10 years ago

I've updated generator-zf5. I can't just init my project, there's lots of existing work there. What files should I update besides scss/app.scss? Anything else major that's changed that doesn't live in app/bower_components?

juliancwirko commented 10 years ago

just run 'bower update' + update app.scss + copy _settings.scss from bower_components/foundation/scss/foundation insto app/scss (if there aren't any changes made by you)

juliancwirko commented 10 years ago

and these are all foundation changes : https://github.com/zurb/foundation/compare/v5.2.3...v5.3.0

ghost commented 10 years ago

Perfect, thanks!