从 Package.JSON 加载所有插件
假设你已经掌握了如何安装 gulp,让我们深入了解你需要在项目根文件夹下的 package.json 中的所有 gulp-dependencies。
如果你还没有 gulpfile,请创建一个带有名称的空文件
gulpfile.js
首先,我们需要一口气。像这样:
var $ = require('gulp');
接下来,让我们通过下面的代码片段将所有插件加载到我们的 gulp 文件中
注意
请仔细阅读我们将在本次阅读中包含的所有摘要中的注释,它们提供了对每个功能的更多洞察
/*
require gulp-load-plugins, and call it
gulp-load-plugins will require individually,
all the plugins installed in package.json at the root directory
these required plugins, are lazy loaded
that is, gulp-load-plugins will only require them when they are referenced in this file
plugins are available for perusal, via camelcased names, minus gulp
eg: gulp-clean-css is accessed by $$.cleanCss
*/
var $$ = require('gulp-load-plugins')();
注意
在我们将在文章中提到的许多例子中,我们都是别名
- gulp as $ and
- gulp-load-plugins 为$$
纯粹为了方便打字。