Skip to content

Commit bf8d614

Browse files
author
sanex3339
committed
Dependencies update
1 parent 65783dd commit bf8d614

File tree

6 files changed

+107
-66
lines changed

6 files changed

+107
-66
lines changed

.eslintrc.js

Lines changed: 46 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
],
2727
"@typescript-eslint/await-thenable": "error",
2828
"@typescript-eslint/ban-ts-comment": "error",
29-
"@typescript-eslint/ban-types": "error",
29+
"@typescript-eslint/ban-types": "off",
3030
"@typescript-eslint/brace-style": [
3131
"error",
3232
"1tbs",
@@ -35,7 +35,6 @@ module.exports = {
3535
}
3636
],
3737
"@typescript-eslint/camelcase": "off",
38-
"@typescript-eslint/class-name-casing": "error",
3938
"@typescript-eslint/comma-spacing": "error",
4039
"@typescript-eslint/consistent-type-assertions": [
4140
"error",
@@ -58,10 +57,6 @@ module.exports = {
5857
"off",
5958
4
6059
],
61-
"@typescript-eslint/interface-name-prefix": [
62-
"error",
63-
"always"
64-
],
6560
"@typescript-eslint/member-delimiter-style": [
6661
"error",
6762
{
@@ -76,6 +71,51 @@ module.exports = {
7671
}
7772
],
7873
"@typescript-eslint/member-ordering": "error",
74+
"@typescript-eslint/naming-convention": [
75+
"error",
76+
{
77+
"selector": "default",
78+
"format": ["camelCase", "PascalCase"]
79+
},
80+
{
81+
"selector": "variable",
82+
"format": ["camelCase", "PascalCase", "UPPER_CASE"]
83+
},
84+
{
85+
"selector": "function",
86+
"format": ["camelCase", "PascalCase"]
87+
},
88+
{
89+
"selector": "class",
90+
"format": ["PascalCase"]
91+
},
92+
{
93+
"selector": "interface",
94+
"format": ["PascalCase"],
95+
"prefix": ["I"]
96+
},
97+
{
98+
"selector": "typeAlias",
99+
"format": ["PascalCase"],
100+
"prefix": ["T"]
101+
},
102+
{
103+
"selector": "typeParameter",
104+
"format": ["PascalCase"]
105+
},
106+
{
107+
"selector": "enum",
108+
"format": ["PascalCase"]
109+
},
110+
{
111+
"selector": "enumMember",
112+
"format": null
113+
},
114+
{
115+
"selector": "property",
116+
"format": ["camelCase", "PascalCase", "snake_case"]
117+
}
118+
],
79119
"@typescript-eslint/no-empty-function": "off",
80120
"@typescript-eslint/no-empty-interface": "error",
81121
"@typescript-eslint/no-explicit-any": "off",

dist/index.browser.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.cli.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"@nuxtjs/opencollective": "0.2.2",
2626
"acorn": "7.2.0",
2727
"chalk": "4.0.0",
28-
"chance": "1.1.5",
28+
"chance": "1.1.6",
2929
"class-validator": "0.12.2",
3030
"commander": "5.1.0",
3131
"escodegen": "1.14.1",
@@ -54,31 +54,31 @@
5454
"@types/mkdirp": "1.0.0",
5555
"@types/mocha": "7.0.2",
5656
"@types/multimatch": "4.0.0",
57-
"@types/node": "14.0.4",
57+
"@types/node": "14.0.5",
5858
"@types/rimraf": "3.0.0",
59-
"@types/sinon": "9.0.3",
59+
"@types/sinon": "9.0.4",
6060
"@types/string-template": "1.0.2",
6161
"@types/webpack-env": "1.15.2",
62-
"@typescript-eslint/eslint-plugin": "2.34.0",
63-
"@typescript-eslint/parser": "2.34.0",
62+
"@typescript-eslint/eslint-plugin": "3.0.1",
63+
"@typescript-eslint/parser": "3.0.1",
6464
"chai": "4.2.0",
6565
"coveralls": "3.1.0",
66-
"eslint": "7.0.0",
66+
"eslint": "7.1.0",
6767
"eslint-plugin-import": "2.20.2",
6868
"eslint-plugin-jsdoc": "25.4.2",
6969
"eslint-plugin-no-null": "1.0.2",
7070
"eslint-plugin-prefer-arrow": "1.2.1",
7171
"eslint-plugin-unicorn": "20.0.0",
7272
"fork-ts-checker-notifier-webpack-plugin": "2.0.0",
73-
"fork-ts-checker-webpack-plugin": "4.1.4",
74-
"mocha": "7.1.2",
73+
"fork-ts-checker-webpack-plugin": "4.1.5",
74+
"mocha": "7.2.0",
7575
"nyc": "15.0.1",
7676
"pjson": "1.0.9",
7777
"pre-commit": "1.2.2",
7878
"rimraf": "3.0.2",
7979
"sinon": "9.0.2",
8080
"threads": "1.4.1",
81-
"ts-loader": "7.0.4",
81+
"ts-loader": "7.0.5",
8282
"ts-node": "6.1.0",
8383
"typescript": "3.9.3",
8484
"webpack": "4.43.0",

yarn.lock

Lines changed: 49 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,10 @@
364364
resolved "https://registry.yarnpkg.com/@types/node/-/node-13.9.3.tgz#6356df2647de9eac569f9a52eda3480fa9e70b4d"
365365
integrity sha512-01s+ac4qerwd6RHD+mVbOEsraDHSgUaefQlEdBbUolnQFjKwCr7luvAlEwW1RFojh67u0z4OUTjPn9LEl4zIkA==
366366

367-
"@types/node@14.0.4":
368-
version "14.0.4"
369-
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.4.tgz#43a63fc5edce226bed106b31b875165256271107"
370-
integrity sha512-k3NqigXWRzQZVBDS5D1U70A5E8Qk4Kh+Ha/x4M8Bt9pF0X05eggfnC9+63Usc9Q928hRUIpIhTQaXsZwZBl4Ew==
367+
"@types/node@14.0.5":
368+
version "14.0.5"
369+
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.0.5.tgz#3d03acd3b3414cf67faf999aed11682ed121f22b"
370+
integrity sha512-90hiq6/VqtQgX8Sp0EzeIsv3r+ellbGj4URKj5j30tLlZvRUpnAe9YbYnjl3pJM93GyXU0tghHhvXHq+5rnCKA==
371371

372372
"@types/normalize-package-data@^2.4.0":
373373
version "2.4.0"
@@ -382,10 +382,10 @@
382382
"@types/glob" "*"
383383
"@types/node" "*"
384384

385-
"@types/sinon@9.0.3":
386-
version "9.0.3"
387-
resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.3.tgz#c803f2ebf96db44230ce4e632235c279830edd45"
388-
integrity sha512-NWVG++603tEDwmz5k0DwFR1hqP3iBmq5GYi6d+0KCQMQsfDEULF1D7xqZ+iXRJHeGwLVhM+Rv73uzIYuIUVlJQ==
385+
"@types/sinon@9.0.4":
386+
version "9.0.4"
387+
resolved "https://registry.yarnpkg.com/@types/sinon/-/sinon-9.0.4.tgz#e934f904606632287a6e7f7ab0ce3f08a0dad4b1"
388+
integrity sha512-sJmb32asJZY6Z2u09bl0G2wglSxDlROlAejCjsnor+LzBMz17gu8IU7vKC/vWDnv9zEq2wqADHVXFjf4eE8Gdw==
389389
dependencies:
390390
"@types/sinonjs__fake-timers" "*"
391391

@@ -409,40 +409,41 @@
409409
resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.15.2.tgz#927997342bb9f4a5185a86e6579a0a18afc33b0a"
410410
integrity sha512-67ZgZpAlhIICIdfQrB5fnDvaKFcDxpKibxznfYRVAT4mQE41Dido/3Ty+E3xGBmTogc5+0Qb8tWhna+5B8z1iQ==
411411

412-
"@typescript-eslint/eslint-plugin@2.34.0":
413-
version "2.34.0"
414-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz#6f8ce8a46c7dea4a6f1d171d2bb8fbae6dac2be9"
415-
integrity sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ==
412+
"@typescript-eslint/eslint-plugin@3.0.1":
413+
version "3.0.1"
414+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.0.1.tgz#368fe7d4c3d927e9fd27b7ba150b4b7e83ddfabe"
415+
integrity sha512-RxGldRQD3hgOK2xtBfNfA5MMV3rn5gVChe+MIf14hKm51jO2urqF64xOyVrGtzThkrd4rS1Kihqx2nkSxkXHvA==
416416
dependencies:
417-
"@typescript-eslint/experimental-utils" "2.34.0"
417+
"@typescript-eslint/experimental-utils" "3.0.1"
418418
functional-red-black-tree "^1.0.1"
419419
regexpp "^3.0.0"
420+
semver "^7.3.2"
420421
tsutils "^3.17.1"
421422

422-
"@typescript-eslint/experimental-utils@2.34.0":
423-
version "2.34.0"
424-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz#d3524b644cdb40eebceca67f8cf3e4cc9c8f980f"
425-
integrity sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==
423+
"@typescript-eslint/experimental-utils@3.0.1":
424+
version "3.0.1"
425+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-3.0.1.tgz#e2721c970068fabd6621709234809c98cd3343ad"
426+
integrity sha512-GdwOVz80MOWxbc/br1DC30eeqlxfpVzexHgHtf3L0hcbOu1xAs1wSCNcaBTLMOMZbh1gj/cKZt0eB207FxWfFA==
426427
dependencies:
427428
"@types/json-schema" "^7.0.3"
428-
"@typescript-eslint/typescript-estree" "2.34.0"
429+
"@typescript-eslint/typescript-estree" "3.0.1"
429430
eslint-scope "^5.0.0"
430431
eslint-utils "^2.0.0"
431432

432-
"@typescript-eslint/parser@2.34.0":
433-
version "2.34.0"
434-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8"
435-
integrity sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA==
433+
"@typescript-eslint/parser@3.0.1":
434+
version "3.0.1"
435+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-3.0.1.tgz#f5163e3a789422f5c62f4daf822bfa03b7e4472d"
436+
integrity sha512-Pn2tDmOc4Ri93VQnT70W0pqQr6i/pEZqIPXfWXm4RuiIprL0t6SG13ViVXHgfScknL2Fm2G4IqXhUzxSRCWXCw==
436437
dependencies:
437438
"@types/eslint-visitor-keys" "^1.0.0"
438-
"@typescript-eslint/experimental-utils" "2.34.0"
439-
"@typescript-eslint/typescript-estree" "2.34.0"
439+
"@typescript-eslint/experimental-utils" "3.0.1"
440+
"@typescript-eslint/typescript-estree" "3.0.1"
440441
eslint-visitor-keys "^1.1.0"
441442

442-
"@typescript-eslint/typescript-estree@2.34.0":
443-
version "2.34.0"
444-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5"
445-
integrity sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==
443+
"@typescript-eslint/typescript-estree@3.0.1":
444+
version "3.0.1"
445+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-3.0.1.tgz#8c0cfb7cda64bd6f54185a7b7d1923d25d36b2a8"
446+
integrity sha512-FrbMdgVCeIGHKaP9OYTttFTlF8Ds7AkjMca2GzYCE7pVch10PAJc1mmAFt+DfQPgu/2TrLAprg2vI0PK/WTdcg==
446447
dependencies:
447448
debug "^4.1.1"
448449
eslint-visitor-keys "^1.1.0"
@@ -1147,10 +1148,10 @@ chalk@^3.0.0:
11471148
ansi-styles "^4.1.0"
11481149
supports-color "^7.1.0"
11491150

1150-
chance@1.1.5:
1151-
version "1.1.5"
1152-
resolved "https://registry.yarnpkg.com/chance/-/chance-1.1.5.tgz#94d9415b40e8d31a13144b998e76519193456dce"
1153-
integrity sha512-uBVETzUktMGLALWQ8fCJCOjNF4Gm1lRjjjuC2+z7rCjx78ioONIK7bYhGzBovhQyqOegJEl3nAJxjE7mvY6aIw==
1151+
chance@1.1.6:
1152+
version "1.1.6"
1153+
resolved "https://registry.yarnpkg.com/chance/-/chance-1.1.6.tgz#967a0a129e0f342f7c65cd5d20f5ae870a26b8af"
1154+
integrity sha512-DXLzaGjasDWbvlFAJyQBIwlzdQZuPdz4of9TTTxmHTjja88ZU/vBwUwxxjalSt43zWTPrhiJT0z0N4bZqfZS9w==
11541155

11551156
chardet@^0.7.0:
11561157
version "0.7.0"
@@ -1924,10 +1925,10 @@ eslint-visitor-keys@^1.1.0:
19241925
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
19251926
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
19261927

1927-
eslint@7.0.0:
1928-
version "7.0.0"
1929-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.0.0.tgz#c35dfd04a4372110bd78c69a8d79864273919a08"
1930-
integrity sha512-qY1cwdOxMONHJfGqw52UOpZDeqXy8xmD0u8CT6jIstil72jkhURC704W8CFyTPDPllz4z4lu0Ql1+07PG/XdIg==
1928+
eslint@7.1.0:
1929+
version "7.1.0"
1930+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.1.0.tgz#d9a1df25e5b7859b0a3d86bb05f0940ab676a851"
1931+
integrity sha512-DfS3b8iHMK5z/YLSme8K5cge168I8j8o1uiVmFCgnnjxZQbCGyraF8bMl7Ju4yfBmCuxD7shOF7eqGkcuIHfsA==
19311932
dependencies:
19321933
"@babel/code-frame" "^7.0.0"
19331934
ajv "^6.10.0"
@@ -2287,10 +2288,10 @@ fork-ts-checker-notifier-webpack-plugin@2.0.0:
22872288
dependencies:
22882289
node-notifier "^6.0.0"
22892290

2290-
fork-ts-checker-webpack-plugin@4.1.4:
2291-
version "4.1.4"
2292-
resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.4.tgz#f0dc3ece19ec5b792d7b8ecd2a7f43509a5285ce"
2293-
integrity sha512-R0nTlZSyV0uCCzYe1kgR7Ve8mXyDvMm1pJwUFb6zzRVF5rTNb24G6gn2DFQy+W5aJYp2eq8aexpCOO+1SCyCSA==
2291+
fork-ts-checker-webpack-plugin@4.1.5:
2292+
version "4.1.5"
2293+
resolved "https://registry.yarnpkg.com/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.5.tgz#780d52c65183742d8c885fff42a9ec9ea7006672"
2294+
integrity sha512-nuD4IDqoOfkEIlS6shhjLGaLBDSNyVJulAlr5lFbPe0saGqlsTo+/HmhtIrs/cNLFtmaudL10byivhxr+Qhh4w==
22942295
dependencies:
22952296
"@babel/code-frame" "^7.5.5"
22962297
chalk "^2.4.1"
@@ -3523,10 +3524,10 @@ mkdirp@^0.5.3:
35233524
dependencies:
35243525
minimist "^1.2.5"
35253526

3526-
mocha@7.1.2:
3527-
version "7.1.2"
3528-
resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.1.2.tgz#8e40d198acf91a52ace122cd7599c9ab857b29e6"
3529-
integrity sha512-o96kdRKMKI3E8U0bjnfqW4QMk12MwZ4mhdBTf+B5a1q9+aq2HRnj+3ZdJu0B/ZhJeK78MgYuv6L8d/rA5AeBJA==
3527+
mocha@7.2.0:
3528+
version "7.2.0"
3529+
resolved "https://registry.yarnpkg.com/mocha/-/mocha-7.2.0.tgz#01cc227b00d875ab1eed03a75106689cfed5a604"
3530+
integrity sha512-O9CIypScywTVpNaRrCAgoUnJgozpIofjKUYmJhiCIJMiuYnLI6otcb1/kpW9/n/tJODHGZ7i8aLQoDVsMtOKQQ==
35303531
dependencies:
35313532
ansi-colors "3.2.3"
35323533
browser-stdout "1.3.1"
@@ -5211,10 +5212,10 @@ tough-cookie@~2.5.0:
52115212
psl "^1.1.28"
52125213
punycode "^2.1.1"
52135214

5214-
ts-loader@7.0.4:
5215-
version "7.0.4"
5216-
resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-7.0.4.tgz#5d9b95227de5afb91fdd9668f8920eb193cfe0cc"
5217-
integrity sha512-5du6OQHl+4ZjO4crEyoYUyWSrmmo7bAO+inkaILZ68mvahqrfoa4nn0DRmpQ4ruT4l+cuJCgF0xD7SBIyLeeow==
5215+
ts-loader@7.0.5:
5216+
version "7.0.5"
5217+
resolved "https://registry.yarnpkg.com/ts-loader/-/ts-loader-7.0.5.tgz#789338fb01cb5dc0a33c54e50558b34a73c9c4c5"
5218+
integrity sha512-zXypEIT6k3oTc+OZNx/cqElrsbBtYqDknf48OZos0NQ3RTt045fBIU8RRSu+suObBzYB355aIPGOe/3kj9h7Ig==
52185219
dependencies:
52195220
chalk "^2.3.0"
52205221
enhanced-resolve "^4.0.0"

0 commit comments

Comments
 (0)