Skip to content

Commit c3ca348

Browse files
committed
Added linked list to the build
1 parent 8bd2a95 commit c3ca348

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@js-labs/data-structures",
3-
"version": "1.0.0-pre-alpha-7",
3+
"version": "1.0.0-alpha.1",
44
"description": "There are neither a lot of resources on internet nor any book which guides and dictates best practices in the implementation of popular Data Structures using Javascript. The purpose of this library is to provide cooked implementation of populare data structures in javascript.",
55
"main": "index.js",
66
"files": [

src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
export * from './queue/queue';
22
export * from './binary-search-tree/binary-search-tree';
33
export * from './graph/graph';
4-
export * from './graph/adj-list';
4+
export * from './graph/adj-list';
5+
export * from './linked-list/linked-list';

0 commit comments

Comments
 (0)