Skip to content

Commit f451567

Browse files
committed
fix: update deps, style changes
1 parent 3111fd7 commit f451567

File tree

5 files changed

+48
-121
lines changed

5 files changed

+48
-121
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"dependencies": {
2424
"64": "^0.2.0",
2525
"@hapi/hapi": "^18.3.2",
26-
"@microfleet/core": "^14.0.1",
26+
"@microfleet/core": "^14.0.2",
2727
"@microfleet/transport-amqp": "^14.0.2",
2828
"@microfleet/validation": "^8.1.2",
2929
"bluebird": "^3.5.5",
@@ -33,7 +33,7 @@
3333
"common-errors": "^1.0.5",
3434
"debug": "^4.1.0",
3535
"ms-conf": "^5.0.1",
36-
"mustache": "^3.0.1",
36+
"mustache": "^3.0.2",
3737
"prom-client": "^11.5.3",
3838
"request": "^2.88.0",
3939
"request-promise": "^4.2.2",
@@ -55,7 +55,7 @@
5555
"codecov": "^3.5.0",
5656
"cross-env": "^5.2.0",
5757
"eslint": "^6.2.1",
58-
"eslint-config-makeomatic": "^3.0.1",
58+
"eslint-config-makeomatic": "^3.1.0",
5959
"eslint-plugin-import": "^2.18.2",
6060
"eslint-plugin-promise": "^4.2.1",
6161
"jest": "^24.9.0",

src/configs/amqp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const {
77

88
// quick way to check if action is adhoc
99
const renderAction = /\.render$/;
10-
const isRenderAction = actionName => renderAction.test(actionName);
10+
const isRenderAction = (actionName) => renderAction.test(actionName);
1111

1212
/**
1313
* Specifies configuration for AMQP / RabbitMQ lib

src/utils/chrome.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Chrome {
4141
this.restarting = null;
4242

4343
// settings
44-
this.settings = Object.assign({
44+
this.settings = {
4545
logLevel: 'info',
4646
port: 0, // generates random port
4747
chromeFlags: [
@@ -52,15 +52,16 @@ class Chrome {
5252
'--remote-debugging-address=0.0.0.0',
5353
],
5454
handleSIGINT: false,
55-
}, restOpts);
55+
...restOpts,
56+
};
5657

5758
// use custom logger if provided
5859
this.log = logger || {
5960
info: (...args) => debug('[info]', ...args),
6061
debug: (...args) => debug('[debug]', ...args),
6162
};
6263

63-
this.onLog = params => this.log.info(params.message.text);
64+
this.onLog = (params) => this.log.info(params.message.text);
6465
this.timeout = timeout;
6566

6667
// Kill spawned Chrome process in case of ctrl-C.

src/utils/upload.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@ const retry = require('bluebird-retry');
77
* @param {String} source Source base64-encoded string
88
* @returns {Buffer}
99
*/
10-
const base64ToBuffer = source => Buffer.from(source, 'base64');
10+
const base64ToBuffer = (source) => Buffer.from(source, 'base64');
1111

1212
/**
1313
* Calculate a md5 hash of the provided string
1414
* @param {*} source
1515
* @returns {String}
1616
*/
17-
const contentHash = source => crypto.createHash('md5')
17+
const contentHash = (source) => crypto.createHash('md5')
1818
.update(source)
1919
.digest();
2020

2121
// retry on following status codes
2222
// https://cloud.google.com/storage/docs/exponential-backoff
2323
const isRetrieble = /^(401|429|5[0-9]{2})$/;
24-
const testError = error => isRetrieble.test(error.responseCode);
24+
const testError = (error) => isRetrieble.test(error.responseCode);
2525

2626
/**
2727
* Upload a document to cloud with optional retry

yarn.lock

Lines changed: 37 additions & 111 deletions
Original file line numberDiff line numberDiff line change
@@ -803,10 +803,10 @@
803803
debug "^3.1.0"
804804
lodash "^4.17.10"
805805

806-
"@microfleet/core@^14.0.1":
807-
version "14.0.1"
808-
resolved "https://registry.yarnpkg.com/@microfleet/core/-/core-14.0.1.tgz#b22331508b55d0e69507f64c9881a5370c8bbbe1"
809-
integrity sha512-hxFAgrDp+Kn9yfg8DYHTXZPymUJqztWvEbBt1dwJC6e1Wv1Xuc+6IC3lRBWdSPp0Go/Wn6NCK1+YH2+RzhaTpA==
806+
"@microfleet/core@^14.0.2":
807+
version "14.0.2"
808+
resolved "https://registry.yarnpkg.com/@microfleet/core/-/core-14.0.2.tgz#ff0c7d19ed2591f7633e98ae23955cd52b70d28b"
809+
integrity sha512-Biw+Ux9CcLdXswF/m4wOrmtyUjCxLEs+EcdjCpTyRGIyqwQohz2mmffVx6AyrUdT4SNYyzpcqydq5I+HvmyUog==
810810
dependencies:
811811
bluebird "^3.5.5"
812812
bluebird-retry "^0.11.0"
@@ -819,17 +819,18 @@
819819
get-value "^3.0.1"
820820
glob "^7.1.4"
821821
is "^3.3.0"
822-
lodash "^4.17.11"
822+
lodash "^4.17.15"
823823
lodash.intersection "^4.4.0"
824824
lodash.partial "^4.2.1"
825825
lsmod "^1.0.0"
826-
opentracing "^0.14.3"
827-
pino "^5.12.6"
826+
opentracing "^0.14.4"
827+
pino "^5.13.2"
828828
pino-multi-stream "^4.1.0"
829-
pino-pretty "^3.2.0"
829+
pino-pretty "^3.2.1"
830830
read-pkg-up "^6.0.0"
831-
semver "^6.1.2"
832-
sonic-boom "^0.7.4"
831+
rfdc "^1.1.4"
832+
semver "^6.3.0"
833+
sonic-boom "^0.7.5"
833834
sort-by "^1.1.1"
834835
stdout-stream "^1.4.1"
835836
yargs-parser "^13.1.1"
@@ -2223,7 +2224,7 @@ configstore@^3.0.0:
22232224
write-file-atomic "^2.0.0"
22242225
xdg-basedir "^3.0.0"
22252226

2226-
confusing-browser-globals@^1.0.5:
2227+
confusing-browser-globals@^1.0.7:
22272228
version "1.0.8"
22282229
resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.8.tgz#93ffec1f82a6e2bf2bc36769cc3a92fa20e502f3"
22292230
integrity sha512-lI7asCibVJ6Qd3FGU7mu4sfG4try4LX3+GVS+Gv8UlrEf2AeW57piecapnog2UHZSbcX/P/1UDWVaTsblowlZg==
@@ -2496,7 +2497,7 @@ debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1:
24962497
dependencies:
24972498
ms "^2.1.1"
24982499

2499-
debuglog@*, debuglog@^1.0.1:
2500+
debuglog@^1.0.1:
25002501
version "1.0.1"
25012502
resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492"
25022503
integrity sha1-qiT/uaw9+aI1GDfPstJ5NgzXhJI=
@@ -2873,22 +2874,22 @@ escodegen@^1.9.1:
28732874
optionalDependencies:
28742875
source-map "~0.6.1"
28752876

2876-
eslint-config-airbnb-base@13.2.0:
2877-
version "13.2.0"
2878-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.2.0.tgz#f6ea81459ff4dec2dda200c35f1d8f7419d57943"
2879-
integrity sha512-1mg/7eoB4AUeB0X1c/ho4vb2gYkNH8Trr/EgCT/aGmKhhG+F6vF5s8+iRBlWAzFIAphxIdp3YfEKgEl0f9Xg+w==
2877+
eslint-config-airbnb-base@14.0.0:
2878+
version "14.0.0"
2879+
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.0.0.tgz#8a7bcb9643d13c55df4dd7444f138bf4efa61e17"
2880+
integrity sha512-2IDHobw97upExLmsebhtfoD3NAKhV4H0CJWP3Uprd/uk+cHuWYOczPVxQ8PxLFUAw7o3Th1RAU8u1DoUpr+cMA==
28802881
dependencies:
2881-
confusing-browser-globals "^1.0.5"
2882+
confusing-browser-globals "^1.0.7"
28822883
object.assign "^4.1.0"
28832884
object.entries "^1.1.0"
28842885

2885-
eslint-config-makeomatic@^3.0.1:
2886-
version "3.0.1"
2887-
resolved "https://registry.yarnpkg.com/eslint-config-makeomatic/-/eslint-config-makeomatic-3.0.1.tgz#69c9929302749347830f0c972551bc8038e0558b"
2888-
integrity sha512-zkTZe/VW/IdMJb/WLuABvr59PEjiE7z4NyQn06p7FI3a1PLtp4TNjsnVDkmiL6mGDE0Ko8qyIsaa/lmW4KW5Dg==
2886+
eslint-config-makeomatic@^3.1.0:
2887+
version "3.1.0"
2888+
resolved "https://registry.yarnpkg.com/eslint-config-makeomatic/-/eslint-config-makeomatic-3.1.0.tgz#34bd525f5aa4582a407074aaaa47f8364cf3995c"
2889+
integrity sha512-wGhJxuoB3YDWdPhPFsxWOLPFot2SSbztmYNdnLH7om8Cd6JDZAF0vDGQr6TeV+r3iKfgUFTniFL4qO+Ppbx9sg==
28892890
dependencies:
2890-
eslint "6.1.0"
2891-
eslint-config-airbnb-base "13.2.0"
2891+
eslint "6.2.1"
2892+
eslint-config-airbnb-base "14.0.0"
28922893
eslint-plugin-import "2.18.2"
28932894
eslint-plugin-promise "4.2.1"
28942895

@@ -2946,7 +2947,7 @@ eslint-scope@^5.0.0:
29462947
esrecurse "^4.1.0"
29472948
estraverse "^4.1.1"
29482949

2949-
eslint-utils@^1.3.1, eslint-utils@^1.4.2:
2950+
eslint-utils@^1.4.2:
29502951
version "1.4.2"
29512952
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab"
29522953
integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==
@@ -2958,50 +2959,7 @@ eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0:
29582959
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
29592960
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
29602961

2961-
eslint@6.1.0:
2962-
version "6.1.0"
2963-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.1.0.tgz#06438a4a278b1d84fb107d24eaaa35471986e646"
2964-
integrity sha512-QhrbdRD7ofuV09IuE2ySWBz0FyXCq0rriLTZXZqaWSI79CVtHVRdkFuFTViiqzZhkCgfOh9USpriuGN2gIpZDQ==
2965-
dependencies:
2966-
"@babel/code-frame" "^7.0.0"
2967-
ajv "^6.10.0"
2968-
chalk "^2.1.0"
2969-
cross-spawn "^6.0.5"
2970-
debug "^4.0.1"
2971-
doctrine "^3.0.0"
2972-
eslint-scope "^5.0.0"
2973-
eslint-utils "^1.3.1"
2974-
eslint-visitor-keys "^1.0.0"
2975-
espree "^6.0.0"
2976-
esquery "^1.0.1"
2977-
esutils "^2.0.2"
2978-
file-entry-cache "^5.0.1"
2979-
functional-red-black-tree "^1.0.1"
2980-
glob-parent "^5.0.0"
2981-
globals "^11.7.0"
2982-
ignore "^4.0.6"
2983-
import-fresh "^3.0.0"
2984-
imurmurhash "^0.1.4"
2985-
inquirer "^6.4.1"
2986-
is-glob "^4.0.0"
2987-
js-yaml "^3.13.1"
2988-
json-stable-stringify-without-jsonify "^1.0.1"
2989-
levn "^0.3.0"
2990-
lodash "^4.17.14"
2991-
minimatch "^3.0.4"
2992-
mkdirp "^0.5.1"
2993-
natural-compare "^1.4.0"
2994-
optionator "^0.8.2"
2995-
progress "^2.0.0"
2996-
regexpp "^2.0.1"
2997-
semver "^6.1.2"
2998-
strip-ansi "^5.2.0"
2999-
strip-json-comments "^3.0.1"
3000-
table "^5.2.3"
3001-
text-table "^0.2.0"
3002-
v8-compile-cache "^2.0.3"
3003-
3004-
eslint@^6.2.1:
2962+
eslint@6.2.1, eslint@^6.2.1:
30052963
version "6.2.1"
30062964
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.2.1.tgz#66c2e4fe8b6356b9f01e828adc3ad04030122df1"
30072965
integrity sha512-ES7BzEzr0Q6m5TK9i+/iTpKjclXitOdDK4vT07OqbkBT2/VcN/gO9EL1C4HlK3TAOXYv2ItcmbVR9jO1MR0fJg==
@@ -3044,7 +3002,7 @@ eslint@^6.2.1:
30443002
text-table "^0.2.0"
30453003
v8-compile-cache "^2.0.3"
30463004

3047-
espree@^6.0.0, espree@^6.1.0:
3005+
espree@^6.1.0:
30483006
version "6.1.0"
30493007
resolved "https://registry.yarnpkg.com/espree/-/espree-6.1.0.tgz#a1e8aa65bf29a331d70351ed814a80e7534e0884"
30503008
integrity sha512-boA7CHRLlVWUSg3iL5Kmlt/xT3Q+sXnKoRYYzj1YeM10A76TEJBbotV5pKbnK42hEUIr121zTv+QLRM5LsCPXQ==
@@ -3936,7 +3894,7 @@ import-local@^2.0.0:
39363894
pkg-dir "^3.0.0"
39373895
resolve-cwd "^2.0.0"
39383896

3939-
imurmurhash@*, imurmurhash@^0.1.4:
3897+
imurmurhash@^0.1.4:
39403898
version "0.1.4"
39413899
resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
39423900
integrity sha1-khi5srkoojixPcT7a21XbyMUU+o=
@@ -5163,11 +5121,6 @@ lockfile@^1.0.4:
51635121
dependencies:
51645122
signal-exit "^3.0.2"
51655123

5166-
lodash._baseindexof@*:
5167-
version "3.1.0"
5168-
resolved "https://registry.yarnpkg.com/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz#fe52b53a1c6761e42618d654e4a25789ed61822c"
5169-
integrity sha1-/lK1OhxnYeQmGNZU5KJXie1hgiw=
5170-
51715124
lodash._baseuniq@~4.6.0:
51725125
version "4.6.0"
51735126
resolved "https://registry.yarnpkg.com/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz#0ebb44e456814af7905c6212fa2c9b2d51b841e8"
@@ -5176,33 +5129,11 @@ lodash._baseuniq@~4.6.0:
51765129
lodash._createset "~4.0.0"
51775130
lodash._root "~3.0.0"
51785131

5179-
lodash._bindcallback@*:
5180-
version "3.0.1"
5181-
resolved "https://registry.yarnpkg.com/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz#e531c27644cf8b57a99e17ed95b35c748789392e"
5182-
integrity sha1-5THCdkTPi1epnhftlbNcdIeJOS4=
5183-
5184-
lodash._cacheindexof@*:
5185-
version "3.0.2"
5186-
resolved "https://registry.yarnpkg.com/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz#3dc69ac82498d2ee5e3ce56091bafd2adc7bde92"
5187-
integrity sha1-PcaayCSY0u5ePOVgkbr9Ktx73pI=
5188-
5189-
lodash._createcache@*:
5190-
version "3.1.2"
5191-
resolved "https://registry.yarnpkg.com/lodash._createcache/-/lodash._createcache-3.1.2.tgz#56d6a064017625e79ebca6b8018e17440bdcf093"
5192-
integrity sha1-VtagZAF2JeeevKa4AY4XRAvc8JM=
5193-
dependencies:
5194-
lodash._getnative "^3.0.0"
5195-
51965132
lodash._createset@~4.0.0:
51975133
version "4.0.3"
51985134
resolved "https://registry.yarnpkg.com/lodash._createset/-/lodash._createset-4.0.3.tgz#0f4659fbb09d75194fa9e2b88a6644d363c9fe26"
51995135
integrity sha1-D0ZZ+7CddRlPqeK4imZE02PJ/iY=
52005136

5201-
lodash._getnative@*, lodash._getnative@^3.0.0:
5202-
version "3.9.1"
5203-
resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5"
5204-
integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U=
5205-
52065137
lodash._reinterpolate@^3.0.0:
52075138
version "3.0.0"
52085139
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
@@ -5273,11 +5204,6 @@ lodash.reduce@^4.6.0:
52735204
resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b"
52745205
integrity sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=
52755206

5276-
lodash.restparam@*:
5277-
version "3.6.1"
5278-
resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
5279-
integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=
5280-
52815207
lodash.set@^4.3.2:
52825208
version "4.3.2"
52835209
resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
@@ -5701,10 +5627,10 @@ ms@^2.0.0, ms@^2.1.1:
57015627
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
57025628
integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
57035629

5704-
mustache@^3.0.1:
5705-
version "3.0.1"
5706-
resolved "https://registry.yarnpkg.com/mustache/-/mustache-3.0.1.tgz#873855f23aa8a95b150fb96d9836edbc5a1d248a"
5707-
integrity sha512-jFI/4UVRsRYdUbuDTKT7KzfOp7FiD5WzYmmwNwXyUVypC0xjoTL78Fqc0jHUPIvvGD+6DQSPHIt1NE7D1ArsqA==
5630+
mustache@^3.0.2:
5631+
version "3.0.2"
5632+
resolved "https://registry.yarnpkg.com/mustache/-/mustache-3.0.2.tgz#35bb886a1e5baad0a8f192258fe9a904f711868c"
5633+
integrity sha512-64neoEgmozb8e/ecGBOSE+RfnevLSFzCI0UKPcrWmjv953/8fXhYO9+EQFtfbi6hwoFxcTA+Fp5mRiOiI9eTuA==
57085634

57095635
mute-stream@0.0.8, mute-stream@~0.0.4:
57105636
version "0.0.8"
@@ -6275,7 +6201,7 @@ opener@^1.5.1:
62756201
resolved "https://registry.yarnpkg.com/opener/-/opener-1.5.1.tgz#6d2f0e77f1a0af0032aca716c2c1fbb8e7e8abed"
62766202
integrity sha512-goYSy5c2UXE4Ra1xixabeVh1guIX/ZV/YokJksb6q2lubWu6UbvPQ20p542/sFIll1nl8JnCyK9oBaOcCWXwvA==
62776203

6278-
opentracing@^0.14.3, opentracing@^0.14.4:
6204+
opentracing@^0.14.4:
62796205
version "0.14.4"
62806206
resolved "https://registry.yarnpkg.com/opentracing/-/opentracing-0.14.4.tgz#a113408ea740da3a90fde5b3b0011a375c2e4268"
62816207
integrity sha512-nNnZDkUNExBwEpb7LZaeMeQgvrlO8l4bgY/LvGNZCR0xG/dGWqHqjKrAmR5GUoYo0FIz38kxasvA1aevxWs2CA==
@@ -6637,7 +6563,7 @@ pino-multi-stream@^4.1.0:
66376563
dependencies:
66386564
pino "^5.12.6"
66396565

6640-
pino-pretty@^3.2.0:
6566+
pino-pretty@^3.2.1:
66416567
version "3.2.1"
66426568
resolved "https://registry.yarnpkg.com/pino-pretty/-/pino-pretty-3.2.1.tgz#db13b793f7074f25051306ee625b6feabae056d9"
66436569
integrity sha512-PGdcRYw7HCF7ovMhrnepOUmEVh5+tATydRrBICEbP37oRasXV+lo2HA9gg8b7cE7LG6G1OZGVXTZ7MLd946k1Q==
@@ -6657,7 +6583,7 @@ pino-std-serializers@^2.3.0:
66576583
resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-2.4.2.tgz#cb5e3e58c358b26f88969d7e619ae54bdfcc1ae1"
66586584
integrity sha512-WaL504dO8eGs+vrK+j4BuQQq6GLKeCCcHaMB2ItygzVURcL1CycwNEUHTD/lHFHs/NL5qAz2UKrjYWXKSf4aMQ==
66596585

6660-
pino@^5.12.6, pino@^5.13.0:
6586+
pino@^5.12.6, pino@^5.13.0, pino@^5.13.2:
66616587
version "5.13.2"
66626588
resolved "https://registry.yarnpkg.com/pino/-/pino-5.13.2.tgz#773416c9764634276e7b2ae021357679ff7b5634"
66636589
integrity sha512-WwOSCy36/gWhinsqWqAnuwIi2WtcH+jvoyeLm3bjUALIrzWIst0AovQjK4jVvSN2l64KFPfi3gd2fjsTovjdLQ==
@@ -7492,7 +7418,7 @@ semver@6.1.1:
74927418
resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b"
74937419
integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==
74947420

7495-
semver@^6.0.0, semver@^6.1.2, semver@^6.2.0:
7421+
semver@^6.0.0, semver@^6.1.2, semver@^6.2.0, semver@^6.3.0:
74967422
version "6.3.0"
74977423
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
74987424
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
@@ -7663,7 +7589,7 @@ socks@~2.3.2:
76637589
ip "^1.1.5"
76647590
smart-buffer "4.0.2"
76657591

7666-
sonic-boom@^0.7.4, sonic-boom@^0.7.5:
7592+
sonic-boom@^0.7.5:
76677593
version "0.7.5"
76687594
resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-0.7.5.tgz#b383d92cdaaa8e66d1f77bdec71b49806d01b5f1"
76697595
integrity sha512-1pKrnAV6RfvntPnarY71tpthFTM3pWZWWQdghZY8ARjtDPGzG/inxqSuRwQY/7V1woUjfyxPb437zn4p5phgnQ==

0 commit comments

Comments
 (0)