Skip to content
Merged
Prev Previous commit
Next Next commit
Replace lodash-es with lodash
  • Loading branch information
MajorLift committed May 23, 2024
commit 61ad8c4c7c5ec2c82ccb0c17b58e3b035003f19a
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
"@ts-bridge/shims": "^0.1.1",
"@types/expect": "^24.3.0",
"@types/lodash": "^4.14.144",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
Expand All @@ -103,7 +102,7 @@
"is-url": "^1.2.4",
"is-uuid": "^1.0.2",
"jest": "^29.7.0",
"lodash-es": "^4.17.21",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.3.0",
"typedoc": "^0.25.9",
Expand Down
2 changes: 1 addition & 1 deletion test/index.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// eslint-disable-next-line n/no-unsupported-features/node-builtins
import assert, { CallTracker } from 'assert';
import fs from 'fs';
import { pick } from 'lodash-es';
import { pick } from 'lodash';
import { basename, extname, resolve } from 'path';
import { describe, it } from 'vitest';

Expand Down
Loading