mirror of https://github.com/waku-org/js-waku.git
Merge pull request #373 from status-im/dependabot/npm_and_yarn/prettier-2.5.1
This commit is contained in:
commit
676316c215
|
@ -79,7 +79,9 @@ jobs:
|
|||
- name: Check all protobuf code was committed
|
||||
shell: bash
|
||||
run: |
|
||||
[ $(git status --short --ignore-submodules|wc -l) -eq 0 ]
|
||||
res=$(git status --short --ignore-submodules)
|
||||
echo -n "'$res'" # For debug purposes
|
||||
[ $(echo -n "$res"|wc -l) -eq 0 ]
|
||||
|
||||
- name: build
|
||||
run: npm run build
|
||||
|
|
|
@ -13486,9 +13486,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/prettier": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz",
|
||||
"integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==",
|
||||
"version": "2.5.1",
|
||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
|
||||
"integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
|
||||
"dev": true,
|
||||
"bin": {
|
||||
"prettier": "bin-prettier.js"
|
||||
|
@ -28330,9 +28330,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"prettier": {
|
||||
"version": "2.3.1",
|
||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.3.1.tgz",
|
||||
"integrity": "sha512-p+vNbgpLjif/+D+DwAZAbndtRrR0md0MwfmOVN9N+2RgyACMT+7tfaRnT+WDPkqnuVwleyuBIG2XBxKDme3hPA==",
|
||||
"version": "2.5.1",
|
||||
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.5.1.tgz",
|
||||
"integrity": "sha512-vBZcPRUR5MZJwoyi3ZoyQlc1rXeEck8KgeC9AwwOn+exuxLxq5toTRDTSaVrXHxelDMHy9zlicw8u66yxoSUFg==",
|
||||
"dev": true
|
||||
},
|
||||
"prettier-linter-helpers": {
|
||||
|
|
|
@ -279,9 +279,10 @@ export type DeepPartial<T> = T extends Builtin
|
|||
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
||||
export type Exact<P, I extends P> = P extends Builtin
|
||||
? P
|
||||
: P &
|
||||
{ [K in keyof P]: Exact<P[K], I[K]> } &
|
||||
Record<Exclude<keyof I, KeysOfUnion<P>>, never>;
|
||||
: P & { [K in keyof P]: Exact<P[K], I[K]> } & Record<
|
||||
Exclude<keyof I, KeysOfUnion<P>>,
|
||||
never
|
||||
>;
|
||||
|
||||
if (_m0.util.Long !== Long) {
|
||||
_m0.util.Long = Long as any;
|
||||
|
|
|
@ -171,9 +171,10 @@ export type DeepPartial<T> = T extends Builtin
|
|||
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
||||
export type Exact<P, I extends P> = P extends Builtin
|
||||
? P
|
||||
: P &
|
||||
{ [K in keyof P]: Exact<P[K], I[K]> } &
|
||||
Record<Exclude<keyof I, KeysOfUnion<P>>, never>;
|
||||
: P & { [K in keyof P]: Exact<P[K], I[K]> } & Record<
|
||||
Exclude<keyof I, KeysOfUnion<P>>,
|
||||
never
|
||||
>;
|
||||
|
||||
if (_m0.util.Long !== Long) {
|
||||
_m0.util.Long = Long as any;
|
||||
|
|
|
@ -710,9 +710,10 @@ export type DeepPartial<T> = T extends Builtin
|
|||
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
||||
export type Exact<P, I extends P> = P extends Builtin
|
||||
? P
|
||||
: P &
|
||||
{ [K in keyof P]: Exact<P[K], I[K]> } &
|
||||
Record<Exclude<keyof I, KeysOfUnion<P>>, never>;
|
||||
: P & { [K in keyof P]: Exact<P[K], I[K]> } & Record<
|
||||
Exclude<keyof I, KeysOfUnion<P>>,
|
||||
never
|
||||
>;
|
||||
|
||||
function longToNumber(long: Long): number {
|
||||
if (long.gt(Number.MAX_SAFE_INTEGER)) {
|
||||
|
|
Loading…
Reference in New Issue