@hedhog/pagination 0.0.16 → 0.0.17

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  <img src="https://avatars.githubusercontent.com/u/177489127?s=200&v=4" alt="Hedhog Avatar" />
5
5
  </p>
6
6
 
7
- **Hedhog Pagination** is a powerful and flexible pagination library designed for use with HedHog-based projects. It simplifies the process of paginating data results from your database queries, making it easy to handle large datasets and provide users with a smooth and efficient browsing experience.
7
+ **Hedhog Pagination** is a powerful and flexible pagination library designed for use with HedHog-based projects. It simplifies the process of paginating data results from your database queries, making it easy to handle large datasets and provide user with a smooth and efficient browsing experience.
8
8
 
9
9
  ## Features
10
10
 
@@ -25,7 +25,7 @@ npm i @hedhog/pagination
25
25
 
26
26
  ```plaintext
27
27
  pagination/
28
- ├── dist/ # Compiled JavaScript files from build
28
+ ├── dist/ # Compiled JavaScript file from build
29
29
  ├── node_modules/ # Discardable folder with all module dependencies
30
30
  ├── src/
31
31
  │ ├── constants/
@@ -38,11 +38,11 @@ pagination/
38
38
  │ │ └── pagination.enums.ts # Enums for pagination
39
39
  │ ├── types/
40
40
  │ │ └── pagination.types.ts # Type definitions for pagination
41
- │ ├── index.ts # Entry point for pagination files
41
+ │ ├── index.ts # Entry point for pagination file
42
42
  │ ├── pagination.module.ts # Module definition for pagination functionalities
43
43
  │ ├── pagination.service.spec.ts # Unit tests for PaginationService
44
44
  │ └── pagination.service.ts # Service class for pagination logic
45
- ├── .gitignore # Specifies which files Git should ignore
45
+ ├── .gitignore # Specifies which file Git should ignore
46
46
  ├── package.json # Manages dependencies and scripts for the library
47
47
  ├── package-lock.json # Lock file for dependencies
48
48
  ├── README.md # Documentation for the library
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedhog/pagination",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "scripts": {