0

我有一个与卓别林一起吃早午餐的应用程序。我想使用 Twitter Bootstrap,但由于它是用 LESS 编写的,我更愿意切换到手写笔版本。幸运的是,那里有一个 bootstrap-stylus node_module。所以我通过npm install bootstrap-stylus. 但是我如何引用模块内的手写笔文件呢?正在做

@import 'bootstrap-stylus'

不起作用。也不附加/lib/bootstrap路径。

"bootstrap-stylus": ">= 0.2"在我dependenciespackage.json文件里,但还是不行。有任何想法吗?谢谢。

4

2 回答 2

0

npm 安装到你的 node_modules 文件夹中,你可以从那里@import stylus 文件。

在我的测试中有效的行是:

@import 'node_modules/bootstrap-stylus/lib/bootstrap.styl'

于 2013-03-26T19:34:21.513 回答
-5

node_modules适用于 node.js。早午餐适用于前端/html5。你不能把它们组合起来那么简单。

您将需要手动将内容复制到appvendor目录。

于 2013-03-26T04:17:51.633 回答