我正在运行Ubuntu服务器并尝试构建引导程序。
以下是我的工作方式:
$ git clone https://github.com/twbs/bootstrap.git
$ cd bootstrap/
$ sudo npm -g install grunt-cli
$ npm install
$ sudo gem install bundler
$ bundle install
$ grunt dist
Warning: Task "dist" not found. Use --force to continue.
Aborted due to warnings.
Gruntfile.js:
/*!
* Bootstrap's Gruntfile
* https://getbootstrap.com
* Copyright 2013-2017 The Bootstrap Authors
* Copyright 2013-2017 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
module.exports = function (grunt) {
'use strict'
// Project configuration.
grunt.initConfig({
'saucelabs-qunit': {
all: {
options: {
build: process.env.TRAVIS_JOB_ID,
concurrency: 10,
maxRetries: 3,
maxPollRetries: 4,
urls: ['http://localhost:3000/js/tests/index.html?hidepassed'],
browsers: grunt.file.readYAML('build/sauce_browsers.yml')
}
}
}
})
grunt.loadNpmTasks('grunt-saucelabs')
}
我在这里关注官方网站上的确切文档: https://v4-alpha.getbootstrap.com/getting-started/build-tools/
他们在网站上声明:"我们的Gruntfile包含以下命令和任务"
显然,我做错了事或阅读文档不正确,但我觉得我做得不对。
感谢任何帮助。
谢谢,