Skip to content

Commit

Permalink
Merge pull request #18166 from mozilla/just-use-lodash
Browse files Browse the repository at this point in the history
fix(deps): Use full build lodash module
  • Loading branch information
jbuck authored Dec 23, 2024
2 parents af33ac6 + 8f2bb07 commit 07d790a
Show file tree
Hide file tree
Showing 6 changed files with 71,909 additions and 71,918 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
cc595fc2b44bc1e15857c016539622a6a750bd5d
# additional re-formatting 09-06-2020
81bf01d41a4bf84c2fb54c83b5c35fa00e53a2a3
# chore(yarn): Convert CRLF to LF line endings 2024-12-23
6a083d6209d0c47d40f8a45a9b1f305d57f13811
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
Loading

0 comments on commit 07d790a

Please sign in to comment.