1. 首页
  2. 数据库
  3. 其它
  4. grunt shell:运行shell命令 源码

grunt shell:运行shell命令 源码

上传者: 2021-04-24 02:24:36上传 ZIP文件 6.93KB 热度 17次
外壳 运行shell命令 与其他CLI工具进行交互的好方法。 例如,使用git branch获得当前的Git git branch 。 安装 $ npm install --save-dev grunt-shell 用法 require ( 'load-grunt-tasks' ) ( grunt ) ; grunt . initConfig ( { shell : { options : { stderr : false } , target : { command : 'ls' } , another : 'ls ./src' // Shorthand } } ) ; grunt . registerTask ( 'default' , [ 'shell' ] ) ; 例子 运行命令 创建一个名为test的文件夹。 grunt . initConf
用户评论