Angularjs 如何在yeoman中包含较少版本的引导?

Angularjs 如何在yeoman中包含较少版本的引导?,angularjs,twitter-bootstrap,web-applications,yeoman,Angularjs,Twitter Bootstrap,Web Applications,Yeoman,我使用yeoman作为我的应用程序的脚手架工具,并使用yeoman角度生成器 虽然应用程序yeoman询问我是否要安装SASS,但它没有提供任何选项来包含较少的相关grunt任务 如果我遗漏了什么,请帮助我 以下是我构建应用程序的步骤 npm install -g yo npm install -g generator-angular yo angular 另外,请告诉我在使用yeoman angular generator作为脚手架工具后,是否可以单独安装相关较少

我使用yeoman作为我的应用程序的脚手架工具,并使用yeoman角度生成器

虽然应用程序yeoman询问我是否要安装SASS,但它没有提供任何选项来包含较少的相关grunt任务

如果我遗漏了什么,请帮助我

以下是我构建应用程序的步骤

    npm install -g yo

    npm install -g generator-angular

    yo angular

另外,请告诉我在使用yeoman angular generator作为脚手架工具后,是否可以单独安装相关较少的任务和文件。

首先安装grunt contrib less模块

npm install grunt-contrib-less --save-dev
从“app/styles”文件夹中的“bower_components/bootstrap”复制less文件夹。您需要更新GrunFile

添加以下任务:

...
less: {
    development: {
        options: {
            compress: true,
            optimization: 2
        },
        files: {
            "app/styles/your_bootstrap.css": "app/styles/less/bootstrap.less"
        }
    }
},
...
您需要加载更少的任务

 grunt.loadNpmTasks('grunt-contrib-less');

正如您所见,这在样式文件夹中创建了一个新的your_bootstrap.css,它将链接到index.html中

发电机无角自举怎么样?