我正在尝试在我的 Ember CLI 项目中使用breakpoint-sass
with ,但是在使用时它会崩溃并出现以下错误:broccoli-sass
@include breakpoint(100px)
cannot add or subtract numbers with incompatible units
[string exception]
重现很简单:
# install latest version of ember-cli:
$ npm install -g ember-cli
# create a new app:
$ ember new breakpoint-sass-test
$ cd breakpoint-sass-test
# add broccoli-sass
$ npm install --save-dev broccoli-sass
# install breakpoint:
$ bower install breakpoint
# add the following line to `Brocfile.js`:
app.import('bower_components/breakpoint/breakpoint/_breakpoint.scss');
# add the following lines to `app/styles/app.scss`:
@import "bower_components/breakpoint/breakpoint/_breakpoint.scss";
.test {
@include breakpoint(100px) {
display:none;
}
}