-
Notifications
You must be signed in to change notification settings - Fork 363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
评论:使用 gulp 压缩 JS #11
Comments
运行
|
@Gaohaoyang 请运行 gulp -v看是否出现版本提示
如果没有出现请参考 https://github.com/nimojs/gulp-book/blob/master/chapter1.md#安装-gulp |
@nimojs 没有下面的 local 版本。你又安装了非全局的gulp?
我在目录下又执行
但是文件目录变为中 node_modules 添加了 gulp |
跟 node 的包机制有关 // 获取 gulp
var gulp = require('gulp') 如果你全局没有 gulp 或者 项目中没有 node_modules gulp 就会导致无法获取模块 |
恩,那安装了全局的 gulp 为什么在这个工程里是无法访问到的? |
http://stackoverflow.com/a/29965514 执行
|
我和 @Gaohaoyang 的问题是一样的,但是按照他的解决方法 执行 npm link gulp 后报这个错 $ gulp script |
@TI390
|
看了下你存放的目录结构 你的 node 的包全局安装是在 c 盘的,根据 node 的 module 查找方式,他是无法跨盘符寻找的。所以用 npm link 可以强制执行包的路径 |
@nimojs |
这里default目标为什么是两个呢?只有一个auto不可以吗?实测也是OK的。所以求解这里为什么要写两个目标 |
gulp.src('js/*.js')可以访问js文件夹下的js文件,请问如何可以访问js下所有子文件夹的js文件? |
访问js文件夹下所有子文件夹的js文件gulp.src('js/*/.js') |
@PanHongyi |
@PanHongyi 'sass//.scss'两个是什么意思,有相关资料吗? |
** 的意思是任何目录 https://github.com/isaacs/node-glob 其实只要多测试几次基本能搞定大部分需求了 |
@bigggge |
@nimojs 好的,谢谢 |
请在此处留下你对 使用 gulp 压缩 JS 的评论
The text was updated successfully, but these errors were encountered: