Skip to content

Commit f91d0dc

Browse files
authored
chore: Bump typescript, jest, yarn, misc. (#843)
* chore: Bump typescript, jest, yarn, misc. * Use deterministic ids.
1 parent 5a22d94 commit f91d0dc

32 files changed

+7550
-7655
lines changed

.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs

+541
Large diffs are not rendered by default.

.yarn/releases/yarn-3.3.0.cjs

-807
This file was deleted.

.yarn/releases/yarn-3.6.0.cjs

+874
Large diffs are not rendered by default.

.yarnrc.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ nodeLinker: node-modules
33
plugins:
44
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
55
spec: "@yarnpkg/plugin-workspace-tools"
6+
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
7+
spec: "@yarnpkg/plugin-interactive-tools"
68

79
supportedArchitectures:
810
cpu:
@@ -16,4 +18,4 @@ supportedArchitectures:
1618
- current
1719
- linux
1820

19-
yarnPath: .yarn/releases/yarn-3.3.0.cjs
21+
yarnPath: .yarn/releases/yarn-3.6.0.cjs

integration/fieldmask/fieldmask-test.ts

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import { FieldMaskMessage } from './fieldmask';
1+
import { FieldMaskMessage } from "./fieldmask";
22

33
let data = {
4-
fieldMask: 'a,b,c.d',
4+
fieldMask: "a,b,c.d",
55
};
66

7-
describe('fieldmask', () => {
8-
it('can decode canonical JSON', () => {
7+
describe("fieldmask", () => {
8+
it("can decode canonical JSON", () => {
99
const f = FieldMaskMessage.fromJSON(data);
1010
expect(f).toMatchInlineSnapshot(`
11-
Object {
12-
"fieldMask": Array [
11+
{
12+
"fieldMask": [
1313
"a",
1414
"b",
1515
"c.d",
@@ -18,15 +18,15 @@ describe('fieldmask', () => {
1818
`);
1919
});
2020

21-
it('can decode non-canonical JSON', () => {
21+
it("can decode non-canonical JSON", () => {
2222
const f = FieldMaskMessage.fromJSON({
2323
fieldMask: {
24-
paths: ['a', 'b', 'c.d'],
25-
}
24+
paths: ["a", "b", "c.d"],
25+
},
2626
});
2727
expect(f).toMatchInlineSnapshot(`
28-
Object {
29-
"fieldMask": Array [
28+
{
29+
"fieldMask": [
3030
"a",
3131
"b",
3232
"c.d",
@@ -35,16 +35,16 @@ describe('fieldmask', () => {
3535
`);
3636
});
3737

38-
it('can encode JSON', () => {
39-
const f = FieldMaskMessage.toJSON({ fieldMask: ['a', 'b', 'c.d'] });
38+
it("can encode JSON", () => {
39+
const f = FieldMaskMessage.toJSON({ fieldMask: ["a", "b", "c.d"] });
4040
expect(f).toEqual(data);
4141
});
4242

43-
it('skips empty paths', () => {
44-
const f = FieldMaskMessage.fromJSON({fieldMask: 'a,,c.d'});
43+
it("skips empty paths", () => {
44+
const f = FieldMaskMessage.fromJSON({ fieldMask: "a,,c.d" });
4545
expect(f).toMatchInlineSnapshot(`
46-
Object {
47-
"fieldMask": Array [
46+
{
47+
"fieldMask": [
4848
"a",
4949
"c.d",
5050
],

0 commit comments

Comments
 (0)