Skip to content

Commit 5eac453

Browse files
chore: modernize package.json exports and import paths
- Update package.json exports to use modern format - Replace deep imports with package-level imports - Consolidate import statements with type prefixes - Update to use collection-base v2.1.0 - Add modern TypeScript build configurations
1 parent fa92dbc commit 5eac453

19 files changed

+965
-2728
lines changed

.eslintrc.json

Lines changed: 0 additions & 36 deletions
This file was deleted.

dist-esm/LinkedList.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/LinkedList.d.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
* Based Upon: http://msdn.microsoft.com/en-us/library/he2s3bh7%28v=vs.110%29.aspx
44
* Licensing: MIT
55
*/
6-
import { LinkedNodeWithValue } from '@tsdotnet/linked-node-list';
7-
import CollectionBase from '@tsdotnet/collection-base/dist/CollectionBase';
8-
import { EqualityComparison } from '@tsdotnet/compare/dist/Comparable';
9-
import { ExtendedIterable } from '@tsdotnet/collection-base';
6+
import type { LinkedNodeWithValue } from '@tsdotnet/linked-node-list';
7+
import { CollectionBase, ExtendedIterable } from '@tsdotnet/collection-base';
8+
import { type EqualityComparison } from '@tsdotnet/compare';
109
/*****************************
1110
* IMPORTANT NOTES ABOUT PERFORMANCE:
1211
* http://jsperf.com/simulating-a-queue

dist/LinkedList.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/LinkedList.js renamed to dist/cjs/LinkedList.js

Lines changed: 7 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)