我正在尝试使用Laravel elixir编译一个简单的sass文件app.scss
,它位于我的resources > assets > sass
目录中。我安装了node,gulp和elixir,我的gulpfile.js
文件看起来像这样......
var elixir = require('laravel-elixir');
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your Laravel application. By default, we are compiling the Less
| file for our application, as well as publishing vendor resources.
|
*/
elixir(function(mix) {
mix.sass('app.scss');
});
然而,当我运行gulp时,我遇到了一些奇怪的错误。我首先尝试使用一个简单的sass文件,但没有包含...
body {
padding-top: 40px;
}
body, label, /checkbox label {
font-weight: 300px;
}
我从我的终端收到此错误...
[14:44:40] Starting 'default'...
[14:44:40] Starting 'sass'...
[14:44:41] Finished 'default' after 1.45 s
[14:44:41] gulp-notify: [Laravel Elixir] Error: invalid top-level expression
[14:44:41] Finished 'sass' after 1.47 s
[14:44:41] gulp-notify: [Error running notifier] Could not send message: not found: notify-send
当我将@include 'pages/home';
添加到app.scss
文件的顶部(而pages > home.scss
确实存在时),我收到以下错误...
[14:38:03] Starting 'default'...
[14:38:03] Starting 'sass'...
[14:38:04] Finished 'default' after 1.42 s
[14:38:04] gulp-notify: [Laravel Elixir] Error: invalid name in @include directive
[14:38:04] Finished 'sass' after 1.44 s
[14:38:04] gulp-notify: [Error running notifier] Could not send message: not found: notify-send
我知道通知程序错误是因为我在VM中运行它因此不会打扰我,但之前的错误导致根本没有编译sass。
如果有帮助我在Mac上运行Laravel 5,OSX Mavericks使用宅基地作为环境。
奇怪的是,之前我有这个工作,我刚开始一个新的Laravel项目,突然之间就无法工作了。有谁知道发生了什么事?
答案 0 :(得分:1)
第一个错误可能是/
中的body, label, /checkbox label {
导致删除斜杠,它应该有效。
第二个是因为您实际想要@include
时使用@import
。
@import
用于包含其他sass / css文件。 @include
用于使用mixins。