Skip to content

Commit fb54f78

Browse files
committed
- Added new dependencies
1 parent 715ddce commit fb54f78

File tree

4 files changed

+1053
-2699
lines changed

4 files changed

+1053
-2699
lines changed

package.json

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -70,37 +70,36 @@
7070
"rimraf": "^3.0.2"
7171
},
7272
"devDependencies": {
73-
"@babel/cli": "7.14.8",
74-
"@babel/core": "7.14.8",
75-
"@babel/preset-env": "7.14.9",
76-
"@babel/preset-typescript": "7.14.5",
73+
"@babel/cli": "7.15.7",
74+
"@babel/core": "7.15.5",
75+
"@babel/preset-env": "7.15.6",
76+
"@babel/preset-typescript": "7.15.0",
7777
"@rollup/plugin-commonjs": "20.0.0",
78-
"@rollup/plugin-node-resolve": "13.0.4",
78+
"@rollup/plugin-node-resolve": "13.0.5",
7979
"@types/express": "4.17.13",
80-
"@types/jest": "26.0.24",
81-
"@types/js-yaml": "4.0.2",
82-
"@types/node": "16.4.10",
83-
"@types/node-fetch": "2.5.12",
80+
"@types/jest": "27.0.2",
81+
"@types/js-yaml": "4.0.3",
82+
"@types/node": "16.10.1",
8483
"@types/qs": "6.9.7",
85-
"@typescript-eslint/eslint-plugin": "4.28.5",
86-
"@typescript-eslint/parser": "4.28.5",
84+
"@typescript-eslint/eslint-plugin": "4.31.2",
85+
"@typescript-eslint/parser": "4.31.2",
8786
"codecov": "3.8.3",
8887
"eslint": "7.32.0",
8988
"eslint-config-prettier": "8.3.0",
90-
"eslint-plugin-prettier": "3.4.0",
89+
"eslint-plugin-prettier": "4.0.0",
9190
"eslint-plugin-simple-import-sort": "7.0.0",
9291
"express": "4.17.1",
9392
"form-data": "4.0.0",
94-
"glob": "7.1.7",
95-
"jest": "27.0.6",
96-
"jest-cli": "26.6.3",
97-
"node-fetch": "2.6.1",
98-
"prettier": "2.3.2",
99-
"puppeteer": "10.1.0",
93+
"glob": "7.2.0",
94+
"jest": "27.2.2",
95+
"jest-cli": "27.2.2",
96+
"node-fetch": "3.0.0",
97+
"prettier": "2.4.1",
98+
"puppeteer": "10.4.0",
10099
"qs": "6.10.1",
101-
"rollup": "2.55.1",
100+
"rollup": "2.57.0",
102101
"rollup-plugin-terser": "7.0.2",
103102
"rollup-plugin-typescript2": "0.30.0",
104-
"typescript": "4.3.5"
103+
"typescript": "4.4.3"
105104
}
106105
}

src/openApi/v2/parser/getOperationParameterName.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import camelCase from 'camelcase';
22

3-
const reservedWords = /^(arguments|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|eval|export|extends|false|finally|for|function|if|implements|import|in|instanceof|interface|let|new|null|package|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|var|void|while|with|yield)$/g;
3+
const reservedWords =
4+
/^(arguments|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|eval|export|extends|false|finally|for|function|if|implements|import|in|instanceof|interface|let|new|null|package|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|var|void|while|with|yield)$/g;
45

56
/**
67
* Replaces any invalid characters from a parameter name.

src/openApi/v3/parser/getOperationParameterName.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import camelCase from 'camelcase';
22

3-
const reservedWords = /^(arguments|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|eval|export|extends|false|finally|for|function|if|implements|import|in|instanceof|interface|let|new|null|package|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|var|void|while|with|yield)$/g;
3+
const reservedWords =
4+
/^(arguments|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|eval|export|extends|false|finally|for|function|if|implements|import|in|instanceof|interface|let|new|null|package|private|protected|public|return|static|super|switch|this|throw|true|try|typeof|var|void|while|with|yield)$/g;
45

56
/**
67
* Replaces any invalid characters from a parameter name.

0 commit comments

Comments
 (0)