thoughtbot / bitters

Add a dash of pre-defined style to your Bourbon.
https://thoughtbot.com
MIT License
1.39k stars 142 forks source link

Missing import "extends/base" #55

Closed nianwang closed 10 years ago

nianwang commented 10 years ago

For Bitters version 0.9.4 ...

When importing Bitters in my SASS, this error popped up:

error bower_components/bitters/app/assets/stylesheets/_bitters.scss (Line 10: File to import not found or unreadable: extends/base.

Using the Bower package (as "bitters": "~0.9.4" within bower.json) here is the file tree:

bower_components/bitters/
├── Gemfile
├── LICENSE
├── README.md
├── Rakefile
├── app
│   └── assets
│       └── stylesheets
│           ├── _bitters.scss
│           ├── _buttons.scss
│           ├── _flashes.scss
│           ├── _forms.scss
│           ├── _grid-settings.scss
│           ├── _lists.scss
│           ├── _tables.scss
│           ├── _typography.scss
│           ├── _variables.scss
│           ├── extends
│           │   ├── _button.scss
│           │   ├── _clearfix.scss
│           │   ├── _ellipsis.scss
│           │   ├── _extends.scss
│           │   └── _hide-text.scss
│           └── mixins
│               ├── _flash.scss
│               └── _mixins.scss
├── bin
│   └── bitters
├── bitters.gemspec
└── lib
    ├── bitters
    │   ├── generator.rb
    │   └── version.rb
    └── bitters.rb

8 directories, 25 files

Is there a missing file, or is this an extraneous import?

kylefiedler commented 10 years ago

@nianwang this should be fixed if you update bitters

nianwang commented 10 years ago

I see it updates to version 0.9.5 and compiles successfully, thanks!