Skip to content

Commit 4a27faf

Browse files
committed
Fixes #14
1 parent e382cea commit 4a27faf

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

contributing.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
## Easy steps:
2+
3+
* Clone this [repo](https://github.com/npm-scripts/scripts.git):
4+
```sh
5+
$ git clone https://github.com/npm-scripts/scripts.git
6+
```
7+
8+
* Install the deps:
9+
```sh
10+
$ cd scripts && npm install
11+
```
12+
13+
* Edit [scripts.json](./scripts.json) to add your script in the below format:
14+
15+
```js
16+
{
17+
"title": "<title_of_your_script>",
18+
"description": "<description>",
19+
"key": "<title_or_key>",
20+
"script": "<your_script>",
21+
"keywords": [
22+
"npm",
23+
"<so_on"
24+
]
25+
}
26+
```
27+
28+
* Commit, push and send a PR!

0 commit comments

Comments
 (0)