Skip to content

Commit 15e2264

Browse files
authored
Merge pull request #21 from datastructures-js/development
fix ts export
2 parents 378d7a1 + 13a9f4d commit 15e2264

4 files changed

Lines changed: 10 additions & 3 deletions

File tree

.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"rules": {
3-
max-len: ["error", { "code": 80, "ignoreComments": true }],
3+
"max-len": ["error", { "code": 80, "ignoreComments": true }],
44
"comma-dangle": ["error", {
55
"functions": "ignore"
66
}],
7-
no-underscore-dangle: [
7+
"no-underscore-dangle": [
88
"error",
99
{ "allowAfterThis": true }
1010
]

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [4.1.3] - 2021-06-20
9+
### Fixed
10+
- index.d.ts
11+
812
## [4.1.2] - 2021-06-20
913
### Fixed
1014
- export.

index.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { Queue } from './src/queue';
2+
3+
export { Queue }

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datastructures-js/queue",
3-
"version": "4.1.2",
3+
"version": "4.1.3",
44
"description": "a performant queue implementation in javascript",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)