3

我将bootstrap-sass-official凉亭依赖项添加到bower_components.

public我以这种方式编译并添加了引导 css 文件(在 中gulpfile.js):

var paths = {
    'bootstrap': 'bower_components/bootstrap-sass-official/assets/',
    'jquery':    'bower_components/jquery/dist/'
};


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

里面有app.scss一条线@import '_bootstrap';。并且 css 文件被编译并且它们工作。

如何将引导字体和脚本添加到页面?

4

2 回答 2

1

我找到了一个解决方案:

mix.scripts(
    '*',
    'resources/assets/javascripts',
    'public/js/app.js'
);
mix.scripts(
    [
        paths.jquery + 'jquery.js',
        paths.bootstrap + 'javascripts/bootstrap.js'
    ],
    'public/js/dependencies.js',
    'bower_components'
);
mix.copy(paths.bootstrap + 'fonts/bootstrap/', "public/fonts/");
于 2015-01-03T17:22:50.487 回答
1

我的解决方案,我很自豪。

/gulpfile.js

var elixir = require('laravel-elixir');

// Set your Bower target directory below.
var bowerDir = './vendor/bower_components';

// Helper function.
function bower(pkg, path) {
    return [bowerDir, pkg, path].join('/');
}

elixir(function (mix) {
    // Styles
    mix.sass('app.scss', null, {includePaths: [bowerDir]});

    // Fonts
    mix.copy(bower('bootstrap-sass', 'assets/fonts/**'), 'public/build/fonts');

    // Scripts
    mix.scripts([
        bower('jquery', 'dist/jquery.min.js'),
        bower('bootstrap-sass', 'assets/javascripts/bootstrap.min.js')
    ]);

    // Versioning
    mix.version([
        'css/app.css',
        'js/all.js'
    ]);
});

/resources/assets/sass/app.scss

@import "bootstrap-sass/assets/stylesheets/bootstrap";

body {
  font: 100% Helvetica, sans-serif;
  color: #333;
}

PhpStorm 的额外提示

在 PhpStorm 中设置bowerDir为资源根。这样你就可以摆脱警告。

错误的

好的

自动完成

使用Ctrl+Space显示路径自动完成。

于 2016-03-12T22:56:35.973 回答