我正在尝试在 Windows 上运行 gulp-ruby-sass。
我已经像这样安装了 Ruby 和 Sass:
$ gem install sass
我的 gulp.task 看起来像这样:
gulp.task('styles', function() {
return sass('src/scss/**/*.scss')
.on('error', sass.logError)
.pipe(gulp.dest('css'));
});
当我 cd 进入我的项目的根目录并运行$ gulp styles
时,我得到了这个:
[22:54:52] Using gulpfile c:\wamp\www\wordpress\
wp-content\themes\bootscores\gulpfile.js
[22:54:52] Starting 'styles'...
[22:54:52] 'sass' is not recognized as an internal or external command,
operable program or batch file.
Error in plugin 'gulp-ruby-sass'
Message:
Gem undefined is not installed.
[22:54:52] Finished 'styles' after 89 ms
我一直在寻找这个问题的解决方案大约两个小时,但仍然没有找到对我有帮助的解决方案。