Skip to content

Commit

Permalink
remove uuid utils, better usage native crypto.randomUUID()
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele Carlini committed Feb 2, 2024
1 parent 7b92fe1 commit 4d21642
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 44 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ts-utily",
"version": "1.1.28",
"version": "1.1.29",
"description": "Typescript utils library",
"homepage": "https://github.com/kemotx90/ts-utily#readme",
"main": "dist/ts-utily.js",
Expand Down
3 changes: 0 additions & 3 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,5 @@ export default {
file: 'dist/ts-utily.js',
format: 'cjs'
},
external: (id) => {
return !!id.includes('crypto');
},
plugins: [typescript(), terser()]
};
3 changes: 1 addition & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ export * from './utils/collection-utils';
export * from './utils/sort-utils';
export * from './utils/object-utils';
export * from './utils/date-utils';
export * from './utils/file-utils';
export * from './utils/uuid-utils';
export * from './utils/file-utils';
12 changes: 0 additions & 12 deletions src/utils/uuid-utils.ts

This file was deleted.

26 changes: 0 additions & 26 deletions test/uuid-utils.spec.ts

This file was deleted.

0 comments on commit 4d21642

Please sign in to comment.