Skip to content

Commit 4043d31

Browse files
committedNov 10, 2021
[Dev Deps] update @babel/cli, @babel/core, @babel/eslint-parser, @babel/plugin-transform-flow-strip-types, eslint-config-airbnb-base
1 parent d143cba commit 4043d31

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

Diff for: ‎package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@
3131
"jest": "jest --coverage __tests__/**/*"
3232
},
3333
"devDependencies": {
34-
"@babel/cli": "^7.15.7",
35-
"@babel/core": "^7.15.8",
36-
"@babel/eslint-parser": "^7.15.8",
37-
"@babel/plugin-transform-flow-strip-types": "^7.14.5",
34+
"@babel/cli": "^7.16.0",
35+
"@babel/core": "^7.16.0",
36+
"@babel/eslint-parser": "^7.16.3",
37+
"@babel/plugin-transform-flow-strip-types": "^7.16.0",
3838
"aud": "^1.1.5",
3939
"babel-jest": "^24.9.0",
4040
"babel-preset-airbnb": "^5.0.0",
4141
"eslint": "^3 || ^4 || ^5 || ^6 || ^7",
42-
"eslint-config-airbnb-base": "^14.2.1",
42+
"eslint-config-airbnb-base": "^15.0.0",
4343
"eslint-plugin-eslint-plugin": "^4.0.2",
4444
"eslint-plugin-flowtype": "^5.8.0",
4545
"eslint-plugin-import": "^2.25.2",

Diff for: ‎src/util/schemas.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const enumArraySchema = (enumeratedList = [], minItems = 0) => ({
2626
* Factory function to generate an object schema
2727
* with specified properties object
2828
*/
29-
export const generateObjSchema = (properties = {}, required) => ({
29+
export const generateObjSchema = (properties = {}, required = undefined) => ({
3030
type: 'object',
3131
properties,
3232
required,

0 commit comments

Comments
 (0)
Please sign in to comment.