Skip to content

Commit

Permalink
fix(deps): Use full build lodash module
Browse files Browse the repository at this point in the history
  • Loading branch information
jbuck committed Dec 23, 2024
1 parent af33ac6 commit 30d4b8b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions packages/fxa-auth-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,6 @@
"keypair": "1.0.4",
"leftpad": "0.0.1",
"load-grunt-tasks": "^5.1.0",
"lodash.chunk": "4.2.0",
"lodash.pick": "4.4.0",
"mailparser": "0.6.1",
"mjml-browser": "^4.15.3",
"mocha": "^10.4.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/scripts/bulk-mailer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

'use strict';

const chunk = require('lodash.chunk');
const chunk = require('lodash/chunk');
const config = require('../../config').default.getProperties();
const readUserRecords = require('./read-user-records');
const sendEmailBatches = require('./send-email-batches');
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/scripts/dump-users/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

'use strict';

const pick = require('lodash.pick');
const pick = require('lodash/pick');

module.exports = function dumpUsers(keys, dbFunc, usePretty) {
const config = require('../../config').default.getProperties();
Expand Down
2 changes: 1 addition & 1 deletion packages/fxa-auth-server/test/oauth/assertion.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
const url = require('url');
const { assert } = require('chai');
const nock = require('nock');
const cloneDeep = require('lodash.clonedeep');
const cloneDeep = require('lodash/cloneDeep');
const util = require('util');

const jwt = require('jsonwebtoken');
Expand Down

0 comments on commit 30d4b8b

Please sign in to comment.