Skip to content

Commit 7308f9c

Browse files
authored
Merge branch 'master' into firebase-v7
2 parents 9731e3c + 97d8532 commit 7308f9c

File tree

10 files changed

+96
-65
lines changed

10 files changed

+96
-65
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
sudo: false
33
node_js:
4-
- 'lts/*'
4+
- "10"
55

66
addons:
77
chrome: stable
@@ -44,4 +44,4 @@ script:
4444
./node_modules/.bin/karma start --single-run --browsers ChromeHeadlessTravis --reporters mocha &&
4545
yarn test:node &&
4646
node tools/run-typings-test.js &&
47-
bash ./test/ng-build/build.sh
47+
bash ./test/ng-build/build.sh

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<p align="center">The official library for Firebase and Angular</p>
44
</p>
55

6-
[![Build Status](https://travis-ci.org/angular/angularfire2.svg?branch=master)](https://travis-ci.org/angular/angularfire2) [![Join the chat at https://gitter.im/angular/angularfire2](https://badges.gitter.im/angular/angularfire2.svg)](https://gitter.im/angular/angularfire2?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6+
[![Build Status](https://travis-ci.org/angular/angularfire.svg?branch=master)](https://travis-ci.org/angular/angularfire) [![Join the chat at https://gitter.im/angular/angularfire2](https://badges.gitter.im/angular/angularfire2.svg)](https://gitter.im/angular/angularfire2?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
77

88
## What is AngularFire?
99

docs/auth/router-guards.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ Example use:
3131
```ts
3232
import { AngularFireAuthGuard, hasCustomClaim, redirectUnauthorizedTo, redirectLoggedInTo } from '@angular/fire/auth-guard';
3333

34-
const adminOnly = hasCustomClaim('admin');
35-
const redirectUnauthorizedToLogin = redirectUnauthorizedTo(['login']);
36-
const redirectLoggedInToItems = redirectLoggedInTo(['items']);
34+
const adminOnly = () => hasCustomClaim('admin');
35+
const redirectUnauthorizedToLogin = () => redirectUnauthorizedTo(['login']);
36+
const redirectLoggedInToItems = () => redirectLoggedInTo(['items']);
3737
const belongsToAccount = (next) => hasCustomClaim(`account-${next.params.id}`);
3838

3939
export const routes: Routes = [

docs/functions/functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class AppModule {}
119119

120120
### Firebase Hosting integration
121121

122-
If you serve your app using [Firebase Hosting](https://firebase.google.com/docs/hosting/), you can configure Functions to be served from the same domain as your app. This will avoid an extra round-trip per function call due to [CORS preflight request](https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request).
122+
If you serve your app using [Firebase Hosting](https://firebase.google.com/docs/hosting/), you can configure Functions to be served from the same domain as your app. This will avoid an extra round-trip per function call due to [CORS preflight request](https://developer.mozilla.org/en-US/docs/Glossary/Preflight_request). This only applies to sites hosted via firebase on `us-central1`.
123123

124124
To set this up, you first need to update your `hosting` section in `firebase.json` and add one `rewrite` rule per function:
125125

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"karma": "karma start",
1212
"test:universal": "npm run build && cp -R dist/packages-dist test/universal-test/node_modules/angularfire2 && cd test/universal-test && npm run prerender",
1313
"delayed_karma": "sleep 10 && karma start",
14-
"build": "rm -rf dist && node tools/build.js && npm pack ./dist/packages-dist",
14+
"build": "rimraf dist && node tools/build.js && npm pack ./dist/packages-dist",
1515
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
1616
"build:wrapper": "npm i --prefix wrapper && npm run --prefix wrapper build && npm pack ./dist/wrapper-dist"
1717
},

test/ng-build/ng6/yarn.lock

+65-37
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,9 @@ are-we-there-yet@~1.1.2:
449449
readable-stream "^2.0.6"
450450

451451
argparse@^1.0.7:
452-
version "1.0.9"
453-
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86"
452+
version "1.0.10"
453+
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
454+
integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==
454455
dependencies:
455456
sprintf-js "~1.0.2"
456457

@@ -701,6 +702,7 @@ babylon@^6.18.0:
701702
balanced-match@^1.0.0:
702703
version "1.0.0"
703704
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
705+
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
704706

705707
base64-js@^1.0.2:
706708
version "1.2.1"
@@ -848,8 +850,9 @@ boxen@^1.2.1:
848850
widest-line "^2.0.0"
849851

850852
brace-expansion@^1.1.7:
851-
version "1.1.8"
852-
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292"
853+
version "1.1.11"
854+
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
855+
integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
853856
dependencies:
854857
balanced-match "^1.0.0"
855858
concat-map "0.0.1"
@@ -1487,6 +1490,7 @@ compression@^1.7.0:
14871490
14881491
version "0.0.1"
14891492
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
1493+
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
14901494

14911495
concat-stream@^1.5.0:
14921496
version "1.6.0"
@@ -2244,8 +2248,9 @@ [email protected], esprima@^2.7.1:
22442248
resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581"
22452249

22462250
esprima@^4.0.0:
2247-
version "4.0.0"
2248-
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804"
2251+
version "4.0.1"
2252+
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
2253+
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
22492254

22502255
esrecurse@^4.1.0:
22512256
version "4.2.0"
@@ -2685,6 +2690,7 @@ for-in@^0.1.3:
26852690
for-in@^1.0.1, for-in@^1.0.2:
26862691
version "1.0.2"
26872692
resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
2693+
integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
26882694

26892695
for-own@^0.1.4:
26902696
version "0.1.5"
@@ -2796,6 +2802,7 @@ fs-write-stream-atomic@^1.0.8:
27962802
fs.realpath@^1.0.0:
27972803
version "1.0.0"
27982804
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
2805+
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
27992806

28002807
fsevents@^1.0.0:
28012808
version "1.1.2"
@@ -2828,8 +2835,9 @@ fstream-ignore@^1.0.5:
28282835
minimatch "^3.0.0"
28292836

28302837
fstream@^1.0.0, fstream@^1.0.10, fstream@^1.0.2:
2831-
version "1.0.11"
2832-
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171"
2838+
version "1.0.12"
2839+
resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045"
2840+
integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==
28332841
dependencies:
28342842
graceful-fs "^4.1.2"
28352843
inherits "~2.0.0"
@@ -2969,7 +2977,7 @@ glob@^6.0.4:
29692977
once "^1.3.0"
29702978
path-is-absolute "^1.0.0"
29712979

2972-
glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@~7.1.1:
2980+
glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@~7.1.1:
29732981
version "7.1.2"
29742982
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15"
29752983
dependencies:
@@ -2980,6 +2988,18 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.5, glob@^7.1.2, glob@~7.1.1:
29802988
once "^1.3.0"
29812989
path-is-absolute "^1.0.0"
29822990

2991+
glob@^7.1.3:
2992+
version "7.1.4"
2993+
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
2994+
integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
2995+
dependencies:
2996+
fs.realpath "^1.0.0"
2997+
inflight "^1.0.4"
2998+
inherits "2"
2999+
minimatch "^3.0.4"
3000+
once "^1.3.0"
3001+
path-is-absolute "^1.0.0"
3002+
29833003
global-dirs@^0.1.0:
29843004
version "0.1.1"
29853005
resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445"
@@ -3064,14 +3084,10 @@ got@^6.7.1:
30643084
unzip-response "^2.0.1"
30653085
url-parse-lax "^1.0.0"
30663086

3067-
graceful-fs@^4.1.0, graceful-fs@^4.1.9:
3068-
version "4.1.15"
3069-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
3070-
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
3071-
3072-
graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6:
3073-
version "4.1.11"
3074-
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658"
3087+
graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9:
3088+
version "4.2.2"
3089+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.2.tgz#6f0952605d0140c1cfdb138ed005775b92d67b02"
3090+
integrity sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==
30753091

30763092
gtoken@^1.2.1:
30773093
version "1.2.3"
@@ -3449,18 +3465,24 @@ [email protected]:
34493465
inflight@^1.0.4:
34503466
version "1.0.6"
34513467
resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
3468+
integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
34523469
dependencies:
34533470
once "^1.3.0"
34543471
wrappy "1"
34553472

3456-
inherits@2, [email protected], inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
3457-
version "2.0.3"
3458-
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
3473+
inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
3474+
version "2.0.4"
3475+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
3476+
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
34593477

34603478
34613479
version "2.0.1"
34623480
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
34633481

3482+
3483+
version "2.0.3"
3484+
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
3485+
34643486
ini@^1.3.4:
34653487
version "1.3.5"
34663488
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
@@ -3643,6 +3665,7 @@ is-extendable@^0.1.0, is-extendable@^0.1.1:
36433665
is-extendable@^1.0.1:
36443666
version "1.0.1"
36453667
resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
3668+
integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==
36463669
dependencies:
36473670
is-plain-object "^2.0.4"
36483671

@@ -3761,6 +3784,7 @@ is-path-inside@^1.0.0:
37613784
is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
37623785
version "2.0.4"
37633786
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
3787+
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
37643788
dependencies:
37653789
isobject "^3.0.1"
37663790

@@ -3852,6 +3876,7 @@ isobject@^2.0.0:
38523876
isobject@^3.0.0, isobject@^3.0.1:
38533877
version "3.0.1"
38543878
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
3879+
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
38553880

38563881
[email protected], isstream@~0.1.2:
38573882
version "0.1.2"
@@ -3923,16 +3948,10 @@ js-tokens@^3.0.0, js-tokens@^3.0.2:
39233948
version "3.0.2"
39243949
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
39253950

3926-
3927-
version "3.11.0"
3928-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef"
3929-
dependencies:
3930-
argparse "^1.0.7"
3931-
esprima "^4.0.0"
3932-
3933-
js-yaml@^3.4.3:
3934-
version "3.10.0"
3935-
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
3951+
[email protected], js-yaml@^3.4.3:
3952+
version "3.13.1"
3953+
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
3954+
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
39363955
dependencies:
39373956
argparse "^1.0.7"
39383957
esprima "^4.0.0"
@@ -4270,8 +4289,9 @@ lodash.keys@~2.4.1:
42704289
lodash.isobject "~2.4.1"
42714290

42724291
lodash.mergewith@^4.6.0:
4273-
version "4.6.0"
4274-
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz#150cf0a16791f5903b8891eab154609274bdea55"
4292+
version "4.6.2"
4293+
resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz#617121f89ac55f59047c7aec1ccd6654c6590f55"
4294+
integrity sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==
42754295

42764296
lodash.noop@^3.0.1:
42774297
version "3.0.1"
@@ -4562,12 +4582,14 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
45624582
"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2:
45634583
version "3.0.4"
45644584
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
4585+
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
45654586
dependencies:
45664587
brace-expansion "^1.1.7"
45674588

45684589
45694590
version "0.0.8"
45704591
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
4592+
integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=
45714593

45724594
minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0:
45734595
version "1.2.0"
@@ -4622,8 +4644,9 @@ mississippi@^2.0.0:
46224644
through2 "^2.0.0"
46234645

46244646
mixin-deep@^1.2.0:
4625-
version "1.3.1"
4626-
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
4647+
version "1.3.2"
4648+
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
4649+
integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
46274650
dependencies:
46284651
for-in "^1.0.2"
46294652
is-extendable "^1.0.1"
@@ -5096,6 +5119,7 @@ on-headers@~1.0.1:
50965119
[email protected], once@^1.3.0, once@^1.3.1, once@^1.3.3, once@^1.4.0:
50975120
version "1.4.0"
50985121
resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
5122+
integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
50995123
dependencies:
51005124
wrappy "1"
51015125

@@ -5324,6 +5348,7 @@ path-exists@^3.0.0:
53245348
path-is-absolute@^1.0.0:
53255349
version "1.0.1"
53265350
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
5351+
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
53275352

53285353
path-is-inside@^1.0.1:
53295354
version "1.0.2"
@@ -6105,10 +6130,11 @@ right-align@^0.1.1:
61056130
align-text "^0.1.1"
61066131

61076132
rimraf@2, rimraf@^2.2.8, rimraf@^2.5.1, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
6108-
version "2.6.2"
6109-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36"
6133+
version "2.7.1"
6134+
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
6135+
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
61106136
dependencies:
6111-
glob "^7.0.5"
6137+
glob "^7.1.3"
61126138

61136139
ripemd160@^2.0.0, ripemd160@^2.0.1:
61146140
version "2.0.1"
@@ -6618,6 +6644,7 @@ split-string@^3.0.1, split-string@^3.0.2:
66186644
sprintf-js@~1.0.2:
66196645
version "1.0.3"
66206646
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
6647+
integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
66216648

66226649
sshpk@^1.7.0:
66236650
version "1.13.1"
@@ -7645,6 +7672,7 @@ wrap-ansi@^2.0.0:
76457672
wrappy@1:
76467673
version "1.0.2"
76477674
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
7675+
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
76487676

76497677
write-file-atomic@^1.1.2:
76507678
version "1.3.4"

0 commit comments

Comments
 (0)