0

我正在尝试使用 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 项目,突然之间它就不起作用了。有谁知道发生了什么?

4

1 回答 1

1

第一个错误可能是由删除斜线引起的,它应该可以工作/body, label, /checkbox label {

第二个是因为您@include在实际需要时使用@import

@import用于包含其他 sass/css 文件。@include用于使用 mixins。

于 2015-02-27T15:14:57.320 回答