Skip to content

Commit

Permalink
Merge pull request #115 from TomA-R/bump_deps
Browse files Browse the repository at this point in the history
chore(common): BIG-0 Bump dependencies
  • Loading branch information
TomA-R authored Jan 24, 2022
2 parents c5e27ce + a85f172 commit 4eb9189
Show file tree
Hide file tree
Showing 9 changed files with 5,153 additions and 6,609 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ aliases:
- &node_executor
executor:
name: node/node
node-version: "10"
node-version: "16.13.2"

- &release_filter
branches:
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
*.log
.DS_Store
/coverage
/lib
/node_modules
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.10.0
16.13.2
5 changes: 3 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// https://jestjs.io/docs/en/configuration.html

module.exports = {
clearMocks: true,
coverageDirectory: "coverage"
clearMocks: true,
coverageDirectory: 'coverage',
maxWorkers: 2,
};
11,716 changes: 5,124 additions & 6,592 deletions package-lock.json

Large diffs are not rendered by default.

24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,27 +29,27 @@
},
"author": "BigCommerce",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.10",
"@babel/preset-env": "^7.16.11",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-bump": "^3.2.0",
"gulp-conventional-changelog": "^2.0.35",
"gulp-git": "^2.10.1",
"gulp-prompt": "^1.2.0",
"gulp-touch": "^1.0.1",
"jest": "^25.5.4",
"lodash": "^4.17.20",
"semver": "^7.3.2",
"standard-version": "^9.0.0",
"jest": "^27.4.7",
"lodash": "^4.17.21",
"semver": "^7.3.5",
"standard-version": "^9.3.2",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@bigcommerce/form-poster": "^1.4.0",
"babel-jest": "^25.2.0",
"babel-jest": "^27.4.6",
"deep-assign": "^3.0.0",
"object-assign": "^4.1.1"
}
Expand Down
4 changes: 4 additions & 0 deletions test/payment/offsite-payment-mappers/customer-mapper.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/

import CustomerMapper from '../../../src/payment/offsite-payment-mappers/customer-mapper';
import paymentRequestDataMock from '../../mocks/payment-request-data';

Expand Down
4 changes: 4 additions & 0 deletions test/payment/offsite-payment-mappers/meta-mapper.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/

import MetaMapper from '../../../src/payment/offsite-payment-mappers/meta-mapper';
import paymentRequestDataMock from '../../mocks/payment-request-data';

Expand Down
4 changes: 4 additions & 0 deletions test/payment/offsite-payment-mappers/payload-mapper.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @jest-environment jsdom
*/

import omit from 'lodash/omit';
import merge from 'lodash/merge';
import PayloadMapper from '../../../src/payment/offsite-payment-mappers/payload-mapper';
Expand Down

0 comments on commit 4eb9189

Please sign in to comment.