Laravel Elixir includePaths无效

时间:2015-02-10 21:17:23

标签: php laravel bootstrap-sass laravel-elixir

我正在尝试Laravel Elixir,并希望在includePaths中包含bootstrap,但它不起作用。我哪里错了?

var paths = {
    'bootstrap': './vendor/bower_components/bootstrap-sass-official/assets/'
}

elixir(function(mix) {
    mix.sass("style.scss", 'public/assets/css/', {includePaths: [paths.bootstrap + 'stylesheets/']})
});

3 个答案:

答案 0 :(得分:0)

我不确定你是否有理由想在你的gulpfile中做includePaths,但是对于bootstrap你不需要。 bootstrap包含路径已在/ node_modules / laravel-elixir / ingredients中开箱即用:

elixir.extend('sass', function(src, output, options) {

    options = _.extend({
        outputStyle: inProduction ? 'compressed' : 'nested',
        includePaths: [elixir.config.bowerDir + "/bootstrap-sass-official/assets/stylesheets"]
    }, options);

    return compile({
        compiler: 'Sass',
        pluginName: 'sass',
        pluginOptions: options,
        src: src,
        output: output,
        search: '**/*.+(sass|scss)'
    });
});

所以你应该做的就是,在你的gulpfile中:

elixir(function(mix) {
    mix.sass("style.scss");
});

然后在你的style.scss:

@import "bootstrap";

我认为您必须将.bowerrc文件设置为:

{
  "directory": "vendor/bower_components"
}

但看起来你已经这样做了。

答案 1 :(得分:0)

我知道这已经有了一个可以接受的答案,但我有这样的工作。

var paths = {
    'bootstrap': '/bower_components/bootstrap-sass/assets/',
}

elixir(function (mix) {
    mix.sass('app.scss', 'public/css', {
        includePaths: [
            __dirname + paths.bootstrap + 'stylesheets/'
        ]
    });

    mix.version("css/app.css");
});

在laravel根目录中安装bower_components

(来自:https://laracasts.com/discuss/channels/requests/gulpfile-elixir-merge-scss-includepaths

答案 2 :(得分:-1)

另一个解决方案是使用此行编译位于供应商文件夹中的sass或更少文件:

mix.less("../../../vendor/twbs/bootstrap/less/bootstrap.less");

注意:我使用"作曲家需要twbs / boostrap"获得完整的包裹。不需要凉亭。

编辑:

我将已编译的css文件输出到资源文件夹,以将其与其他css文件合并:

mix.less("../../../vendor/twbs/bootstrap/less/bootstrap.less", 'resources/css');


mix.styles([
    "bootstrap.css"
], 'public/css/app.css');