Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Trying to figure out what putting : in an npm script name does. For example:

package.json

"test:ci": "rest of script"

what would :ci do? running npm run test:ci fails

I can't find anything bash syntax really.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
377 views
Welcome To Ask or Share your Answers For Others

1 Answer

I believe it's just a naming convention to group a set of related tasks. For example you might have

"test:ci": ...
"test:units": ....
"test:integration"...

In this case it is grouping a related set of test tasks.

It would be down to the package author to specify. You can split tasks out like described in the answer above and then have a 'global' test command which combines each of them e.g. test:ci && test:unit && test:integration enabling you to run them all at once or when individually when needed.

You can use npm-run-all (link) and use the command npm-run-all test:*, which would then find all scripts starting with the test: group.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...