Skip to content

Commit 563420c

Browse files
Merge pull request #21 from oliviacarlisle/dev
Rename to dslib-core
2 parents 968ed41 + 450fd96 commit 563420c

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# core-dslib
1+
# dslib-core
22

3-
[![codecov](https://codecov.io/gh/oliviacarlisle/core-dslib/graph/badge.svg?token=SVPFWK8OW9)](https://codecov.io/gh/oliviacarlisle/core-dslib)
4-
[![Build Status](https://github.com/oliviacarlisle/core-dslib/actions/workflows/ci.yml/badge.svg)](https://github.com/oliviacarlisle/core-dslib/actions)
3+
[![codecov](https://codecov.io/gh/oliviacarlisle/dslib-core/graph/badge.svg?token=SVPFWK8OW9)](https://codecov.io/gh/oliviacarlisle/dslib-core)
4+
[![Build Status](https://github.com/oliviacarlisle/dslib-core/actions/workflows/ci.yml/badge.svg)](https://github.com/oliviacarlisle/dslib-core/actions)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66

77
A robust and efficient data structures library.
@@ -17,19 +17,19 @@ A robust and efficient data structures library.
1717

1818
## Table of Contents
1919

20-
- [💡 Why core-dslib?](#-why-core-dslib)
20+
- [💡 Why dslib-core?](#-why-dslib-core)
2121
- [📦 Installation](#-installation)
2222
- [🚀 Getting Started](#-getting-started)
2323
- [🏗️ Data Structures](#%EF%B8%8F-data-structures)
2424
- [🔄 Queue](#-queue)
2525
- [🌟 Contributing](#-contributing)
2626
- [⚖️ License](#%EF%B8%8F-license)
2727

28-
## 💡 Why core-dslib?
28+
## 💡 Why dslib-core?
2929

30-
`core-dslib` is your go-to toolkit for advanced data structures in TypeScript and JavaScript. It bridges the gap left by standard libraries, empowering developers with the tools they need for efficient data management and manipulation.
30+
`dslib-core` is your go-to toolkit for advanced data structures in TypeScript and JavaScript. It bridges the gap left by standard libraries, empowering developers with the tools they need for efficient data management and manipulation.
3131

32-
Whether you're building a complex algorithm or optimizing application performance, `core-dslib` provides the building blocks you need to succeed.
32+
Whether you're building a complex algorithm or optimizing application performance, `dslib-core` provides the building blocks you need to succeed.
3333

3434
> **Note:** Currently only compatible with ESM projects.
3535
@@ -38,15 +38,15 @@ Whether you're building a complex algorithm or optimizing application performanc
3838
Install the package via npm:
3939

4040
```bash
41-
npm install core-dslib
41+
npm install dslib-core
4242
```
4343

4444
## 🚀 Getting Started
4545

4646
Import using ESM syntax:
4747

4848
```typescript
49-
import { Queue } from 'core-dslib';
49+
import { Queue } from 'dslib-core';
5050
```
5151

5252
Quick start example:
@@ -119,7 +119,7 @@ Implemented using a circular buffer to ensure efficient enqueue and dequeue oper
119119
#### Example Usage
120120

121121
```typescript
122-
import { Queue } from 'core-dslib';
122+
import { Queue } from 'dslib-core';
123123

124124
const queue = new Queue<string>();
125125

@@ -218,20 +218,20 @@ node v20.17.0
218218

219219
## 🌟 Contributing
220220

221-
Contributions are welcome! If you have ideas, suggestions, or find any issues, please open an [issue](https://github.com/oliviacarlisle/core-dslib/issues) or submit a [pull request](https://github.com/oliviacarlisle/core-dslib/pulls).
221+
Contributions are welcome! If you have ideas, suggestions, or find any issues, please open an [issue](https://github.com/oliviacarlisle/dslib-core/issues) or submit a [pull request](https://github.com/oliviacarlisle/dslib-core/pulls).
222222

223223
### Development Setup
224224

225225
Clone the repository:
226226

227227
```bash
228-
git clone https://github.com/oliviacarlisle/core-dslib.git
228+
git clone https://github.com/oliviacarlisle/dslib-core.git
229229
```
230230

231231
Install dependencies:
232232

233233
```bash
234-
cd core-dslib
234+
cd dslib-core
235235
npm install
236236
```
237237

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "core-dslib",
2+
"name": "dslib-core",
33
"version": "1.0.0",
44
"description": "A robust and efficient data structures library.",
55
"type": "module",
@@ -12,7 +12,7 @@
1212
},
1313
"repository": {
1414
"type": "git",
15-
"url": "git+https://github.com/oliviacarlisle/core-dslib.git"
15+
"url": "git+https://github.com/oliviacarlisle/dslib-core.git"
1616
},
1717
"keywords": [
1818
"data structures",
@@ -36,9 +36,9 @@
3636
"dist"
3737
],
3838
"bugs": {
39-
"url": "https://github.com/oliviacarlisle/core-dslib/issues"
39+
"url": "https://github.com/oliviacarlisle/dslib-core/issues"
4040
},
41-
"homepage": "https://github.com/oliviacarlisle/core-dslib/#readme",
41+
"homepage": "https://github.com/oliviacarlisle/dslib-core/#readme",
4242
"devDependencies": {
4343
"@types/jest": "^29.5.13",
4444
"@types/node": "^22.7.4",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"skipLibCheck": true,
1010
"noEmit": true
1111
},
12-
"include": ["**/*.ts"],
12+
"include": ["**/*.ts", "src/index.ts"],
1313
"exclude": ["node_modules"]
1414
}

0 commit comments

Comments
 (0)