Skip to content

Commit 72f3353

Browse files
authored
Fix build and update readme file (#75)
* v2.7.7 * added docsify support * add lock file * add yarn lock file * fix build and update readme * update readme * docs changes
1 parent 5fa29d5 commit 72f3353

File tree

6 files changed

+4278
-44
lines changed

6 files changed

+4278
-44
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ npm-debug.log
44
.gitcredentials
55
**/credentials/
66
.DS_Store
7-
package-lock.json

.npmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ demo
77
.DS_Store
88
.DS_Store?
99

10+
# Don't add docs folder #
11+
######################
12+
docs
13+
1014
/npm-debug.log
1115
/node_modules

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ The intent is to simplify the request process by handling the tedious logic. It'
88
[![Downloads](https://img.shields.io/npm/dt/ebay-node-api.svg)](https://img.shields.io/npm/dt/ebay-node-api.svg)
99
[![Build Status](https://travis-ci.org/pajaydev/ebay-node-api.svg?branch=master)](https://travis-ci.org/ajay2507/ebay-node-api)
1010

11+
**Documentation:** [https://pajaydev.github.io/ebay-node-api](https://pajaydev.github.io/ebay-node-api)
1112

1213
## 📒 Table of Contents
1314

14-
* [Installation](# installation)
15+
* [Installation](#installation)
1516
* [Usage](#usage)
1617
* [Starter Guide](#starter-guide)
1718
* [Test](#test)

docs/README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ebay API Node.js
1+
# **Ebay API Node.js**
22

33
Ebay API Client for node js.
44

@@ -9,13 +9,13 @@ The intent is to simplify the request process by handling the tedious logic. It'
99
[![Build Status](https://travis-ci.org/pajaydev/ebay-node-api.svg?branch=master)](https://travis-ci.org/ajay2507/ebay-node-api)
1010

1111

12-
## 🚚 Installation
12+
# 🚚**Installation**
1313

1414
```shell
1515
npm install ebay-node-api
1616
```
1717

18-
## ⚡️ Usage:
18+
# ⚡️**Usage**
1919

2020
```javascript
2121
let eBay = require('ebay-node-api')
@@ -46,7 +46,7 @@ If you using Sandbox environment, make sure to provide `env` variable in options
4646
- `headers` - optional(`Object`) - Add custom request headers. For reference [Header Section](https://developer.ebay.com/api-docs/static/rest-request-components.html#HTTP)
4747
- `countryCode` - optional(`String`) - sets the GLOBAL-ID parameter which specifies the eBay site to use for searches. [Possible IDs](https://developer.ebay.com/DevZone/merchandising/docs/Concepts/SiteIDToGlobalID.html)
4848

49-
## API
49+
## **Examples**
5050

5151
### GetAccessToken
5252

@@ -350,21 +350,21 @@ ebay.getShippingCosts({
350350
});
351351
```
352352

353-
## Test
353+
## **Test**
354354
All test files are present inside test folder. You can run using
355355

356356
```javascript
357357
npm run test
358358
```
359-
## Issues:
359+
## **Issues**
360360
If you are facing any issues, you can create the issues [here](https://github.com/pajaydev/ebay-node-api/issues).
361361

362-
## 👍 Contribution:
362+
## 👍 **Contribution**
363363
Show your ❤️ and support by giving a ⭐. Willing to share your idea or ready to contribute, check [here](https://github.com/pajaydev/ebay-node-api/blob/master/CONTRIBUTING.md)
364364

365-
## 📝 License:
365+
## 📝 **License**
366366
MIT.
367367

368-
## Examples:
368+
## Demo:
369369
I have mentioned the examples here
370370
https://github.com/pajaydev/ebay-node-api/tree/master/demo.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ebay-node-api",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"description": "Ebay node api client",
55
"main": "./src/index.js",
66
"homepage": "https://github.com/pajaydev/ebay-node-api",

0 commit comments

Comments
 (0)