3

我正在尝试使用 Yeoman 和 Foundation 构建一个 Web 项目。我已经创建了基本项目并包含了 Foundation 组件,bower install foundation但是当我运行grunt server它时无法编译 Foundation 或将其移动到应用程序树中。如何让 Yeoman(或 grunt)识别和编译 Foundation?

我正在使用 Yeoman 1.0.0-beta.3。运行以设置项目的命令是:

npm install generator-angular generator-testacular
bower install foundation
yo angular --minsafe
npm install
bower install --dev
grunt server

但是 compass:server 任务报告Nothing to compile. If you're trying to start a new project, you have left off the directory argument.

4

1 回答 1

0

我刚刚习惯了约曼和基金会。但是您不应该添加 < script > 标签以便 grunt 识别您打算使用“基础”吗?

从约曼开始

yo angular 
bower install angular-ui
# then add <script src="components/angular-ui/build/angular-ui.js"></script>
# and <link rel="stylesheet" href="components/angular-ui/build/angular-ui.css"/>
grunt
于 2013-05-24T04:44:24.533 回答