Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): Use full build lodash module #18166

Merged
merged 3 commits into from
Dec 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading