linked-list-typed 1.3.1 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,7 +8,7 @@ This is a standalone Linked List data structure from the data-structure-typed co
8
8
  ## install
9
9
  ### npm
10
10
  ```bash
11
- npm i linked-list-typed
11
+ npm i linked-list-typed --save
12
12
  ```
13
13
  ### yarn
14
14
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linked-list-typed",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
4
4
  "description": "Linked List, Doubly Linked List, Singly Linked List. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -52,6 +52,6 @@
52
52
  "typescript": "^4.9.5"
53
53
  },
54
54
  "dependencies": {
55
- "data-structure-typed": "^1.3.1"
55
+ "data-structure-typed": "^1.3.2"
56
56
  }
57
57
  }