Skip to content

Commit

Permalink
remove uuid dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Mar 20, 2024
1 parent a218f73 commit 9d42e10
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 11 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
"tslib": "^2.6.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"uuid": "^9.0.1",
"uvu": "^0.5.6",
"which": "^4.0.0"
},
Expand Down
8 changes: 0 additions & 8 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/environment.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
import { nullDevice, shared } from './shared.mjs';
import { platform } from 'node:os';
import { test } from 'uvu';
import { v4 as uuid } from 'uuid';
// import { v4 as uuid } from 'uuid';
import * as assert from 'uvu/assert';
import * as MakeNSIS from '../dist/makensis.js';
import path from 'node:path';
import which from 'which';
import { randomUUID } from 'node:crypto';
import { randomUUID as uuid } from 'node:crypto';

// Temporary workaround
const __dirname = path.resolve(path.dirname(''));
Expand Down

0 comments on commit 9d42e10

Please sign in to comment.