skaleb-simple-paginator
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "skaleb-simple-paginator", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Simple client side pagination", | ||
"main": "index.ts", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
@@ -7,0 +8,0 @@ "build": "tsc", |
@@ -22,6 +22,6 @@ # Simple Paginator | ||
## How To Use | ||
## Usage | ||
Importing the package into your class. | ||
```javascript | ||
import { SimplePaginator } from './SimplePaginator' | ||
import { SimplePaginator } from 'skaleb-simple-paginator' | ||
@@ -110,5 +110,5 @@ // Variables that will be used below in `Instantiation` | ||
```bash | ||
npm run lint | ||
npm run test | ||
npm run coverage | ||
npm run lint | ||
``` | ||
@@ -115,0 +115,0 @@ |
@@ -6,2 +6,4 @@ { | ||
"resolveJsonModule": true, | ||
"declaration": true, | ||
"declarationMap": true, | ||
"lib": [ | ||
@@ -13,2 +15,3 @@ "es2018" | ||
"typeRoots": [ | ||
"types", | ||
"node_modules/@types" | ||
@@ -18,8 +21,8 @@ ] | ||
"include": [ | ||
"src/**/*" | ||
"src" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"test/**/*.spec.ts" | ||
"test" | ||
] | ||
} |
Sorry, the diff of this file is not supported yet
33808
31
703