文件名称:gulp-shell:gulp的便捷命令行界面
文件大小:94KB
文件格式:ZIP
更新时间:2024-02-24 10:33:19
gulp shell gulp-plugin command GulpTypeScript
口香糖壳
gulp的便捷命令行界面
安装
npm install --save-dev gulp-shell
用法
const gulp = require ( 'gulp' )
const shell = require ( 'gulp-shell' )
gulp . task ( 'example' , ( ) => {
return gulp
. src ( '*.js' , { read : false } )
. pipe ( shell ( [ 'echo <%= file.path %>' ] ) )
} )
或者您可以使用以下速记:
gulp . task ( 'greet' , shell . task ( 'echo Hello, World!' ) )
您可以在该项目的中找到更多示例。
警告:运行类似的命令gulp.src('').pipe(shell('whatever')) 被。 请不要再做了。
API
shell(命令,选项)或shell.task(命令,选项)
命令
类型: string或Array
【文件预览】:
gulp-shell-master
----.gitignore(48B)
----tsconfig.json(409B)
----README.md(4KB)
----index.test.ts(5KB)
----gulpfile.ts(562B)
----.prettierrc.yaml(30B)
----LICENSE(1KB)
----package.json(2KB)
----jest.config.js(93B)
----index.ts(3KB)
----.travis.yml(95B)
----yarn.lock(218KB)
----.eslintrc.json(282B)