Skip to content

Commit

Permalink
feat(nanolib): separate export from dedupe package
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammadhonarvar committed Oct 11, 2024
1 parent 63f5a3b commit 10c5ffc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions packages/nanolib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@
"types": "./dist/node-fs.d.ts",
"import": "./dist/node-fs.mjs",
"require": "./dist/node-fs.cjs"
},
"./dedupe": {
"types": "./dist/dedupe.d.ts",
"import": "./dist/dedupe.mjs",
"require": "./dist/dedupe.cjs"
}
},
"license": "AGPL-3.0-only",
Expand Down
1 change: 1 addition & 0 deletions packages/nanolib/src/dedupe.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@alwatr/dedupe';
1 change: 0 additions & 1 deletion packages/nanolib/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export * from '@alwatr/async-queue';
export * from '@alwatr/dedupe';
export * from '@alwatr/deep-clone';
export * from '@alwatr/delay';
export * from '@alwatr/fetch';
Expand Down

0 comments on commit 10c5ffc

Please sign in to comment.