博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[NPM] Use a shorthand syntax for running multiple npm scripts with npm-run-all
阅读量:5979 次
发布时间:2019-06-20

本文共 752 字,大约阅读时间需要 2 分钟。

Running multiple scripts in series or in parallel can become very verbose. Using a tool such as npm-run-all can help reduce the amount of overhead you have to type in order to get the same behavior.

 

Install:

npm i -D npm-run-all

 

"scripts": {    "start": "node index.js",    "test": "npm-run-all eslint stylelint mocha",    "eslint": "eslint --cache --fix ./",    "stylelint": "stylelint '**/*.scss' --syntax scss",    "mocha": "mocha spec/ --require babel-register --watch"  },

 

By default:

"test": "npm-run-all eslint stylelint mocha",

This will run in series.

 

TO make it run in parellel, we can add flag:

"test": "npm-run-all --parallel eslint mocha stylelint",

Here notice that we put 'mocha' on the second, but we still able to stop it by 'ctrl + c'

转载地址:http://puoox.baihongyu.com/

你可能感兴趣的文章
logstash消费阿里云kafka消息
查看>>
Oracle——条件控制语句
查看>>
day-6 and day-7:面向对象
查看>>
CSU Double Shortest Paths 湖南省第十届省赛
查看>>
webgl像机世界
查看>>
php正则怎么使用(最全最细致)
查看>>
javascript数学运算符
查看>>
LC.155. Min Stack(非优化,两个stack 同步 + -)
查看>>
交互设计[3]--点石成金
查看>>
SCCM TP4部署Office2013
查看>>
redis主从配置<转>
查看>>
bootloader功能介绍/时钟初始化设置/串口工作原理/内存工作原理/NandFlash工作原理...
查看>>
利用console控制台调试php代码
查看>>
讲解sed用法入门帖子
查看>>
Linux 内核已支持苹果
查看>>
shell脚本逻辑判断,文件目录属性判断,if,case用法
查看>>
【二叉树系列】二叉树课程大作业
查看>>
ASP.NET Core 2 学习笔记(三)中间件
查看>>
hbase region split源码分析
查看>>
MySQL备份之分库分表备份脚本
查看>>