Skip to content

Commit 26b2237

Browse files
authored
chore: bump dependencies (#11162)
1 parent fedafc3 commit 26b2237

File tree

25 files changed

+6065
-5730
lines changed

25 files changed

+6065
-5730
lines changed

.eslintrc.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,14 @@ module.exports = {
2323
},
2424
extends: [
2525
'plugin:import/errors',
26-
'prettier',
2726
'plugin:eslint-comments/recommended',
27+
'plugin:prettier/recommended',
2828
],
2929
overrides: [
3030
{
3131
extends: [
3232
'plugin:@typescript-eslint/eslint-recommended',
3333
'plugin:import/typescript',
34-
'prettier/@typescript-eslint',
3534
],
3635
files: ['*.ts', '*.tsx'],
3736
plugins: ['@typescript-eslint/eslint-plugin', 'local'],
@@ -258,7 +257,7 @@ module.exports = {
258257
parserOptions: {
259258
sourceType: 'module',
260259
},
261-
plugins: ['markdown', 'import', 'jest', 'prettier'],
260+
plugins: ['markdown', 'import', 'jest'],
262261
rules: {
263262
'accessor-pairs': ['warn', {setWithoutGet: true}],
264263
'block-scoped-var': 'off',
@@ -442,7 +441,6 @@ module.exports = {
442441
'prefer-arrow-callback': ['error', {allowNamedFunctions: true}],
443442
'prefer-const': 'error',
444443
'prefer-template': 'off',
445-
'prettier/prettier': 'error',
446444
quotes: [
447445
'error',
448446
'single',

.yarn/releases/yarn-2.4.0.cjs .yarn/releases/yarn-2.4.1.cjs

+4-4
Large diffs are not rendered by default.

.yarnrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ plugins:
66
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
77
spec: "@yarnpkg/plugin-interactive-tools"
88

9-
yarnPath: .yarn/releases/yarn-2.4.0.cjs
9+
yarnPath: .yarn/releases/yarn-2.4.1.cjs

e2e/__tests__/__snapshots__/chaiAssertionLibrary.ts.snap

+12-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ exports[`chai assertion errors should display properly 1`] = `
44
FAIL __tests__/chai_assertion.js
55
● chai.js assertion library test › expect
66
7-
Expected value "hello sunshine"
7+
assert.strictEqual(received, expected)
8+
9+
Expected value to strictly be equal to:
10+
"hello sunshine"
811
Received:
912
"hello world"
1013
@@ -31,7 +34,10 @@ FAIL __tests__/chai_assertion.js
3134
3235
chai.js assertion library testshould
3336
34-
Expected value "hello world"
37+
assert.strictEqual(received, expected)
38+
39+
Expected value to strictly be equal to:
40+
"hello world"
3541
Received:
3642
"hello sunshine"
3743
@@ -58,7 +64,10 @@ FAIL __tests__/chai_assertion.js
5864
5965
chai.js assertion library testassert
6066
61-
Expected value "hello sunshine"
67+
assert.strictEqual(received, expected)
68+
69+
Expected value to strictly be equal to:
70+
"hello sunshine"
6271
Received:
6372
"hello world"
6473

0 commit comments

Comments
 (0)