Skip to content

Commit

Permalink
Fixed entry point file name
Browse files Browse the repository at this point in the history
  • Loading branch information
TarSzator committed May 13, 2024
1 parent aa80e8d commit 67c8d0a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fixed entry point file name

## [2.0.1] - 2024-05-12

### Changed

- Update node version to 18 in npmpublish.yml

## [2.0.0] - 2024-05-12
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/tests/featureTest/customHashTable.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it, expect, vitest } from 'vitest';
import cacheEngine from '../../main.js';
import cacheEngine from '../../index.js';
import type { HashTable } from '../../dataStructure/HashTable.js';

describe('cache engine lru with custom hash table', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/tests/featureTest/defaultLRU.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { describe, it, expect } from 'vitest';
import cacheEngine from '../../main.js';
import cacheEngine from '../../index.js';

describe('cache engine default lru', () => {
it('should test all features', () => {
Expand Down

0 comments on commit 67c8d0a

Please sign in to comment.