Skip to content

Commit 4ab712c

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/vite-5.4.15
2 parents 4d91960 + df76359 commit 4ab712c

33 files changed

+10530
-10964
lines changed

.eslintrc.cjs

+8
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ module.exports = {
7272
message: 'Please use `getTracer()` from `./handlers/tracer.cjs` instead',
7373
},
7474
],
75+
patterns: [
76+
{
77+
// only */storage/storage.cjs is allowed to be imported
78+
// rest are implementation details that should not be used directly
79+
group: ['*/storage/*', '!*/storage/storage.cjs'],
80+
message: 'Import public `[...]/storage/storage.cjs` module instead.',
81+
},
82+
],
7583
},
7684
],
7785
},

e2e-report/app/globals.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
@font-face {
77
font-family: Mulish;
88
src: url(/MulishVar-latin.woff2) format('woff2');
9-
unicode-range: U+5, U+20, U+21, U+24, U+25, U+26, U+27, U+2B-2E, U+30-3A, U+3F, U+41-5A, U+61-7A,
10-
U+D7, U+2019, U+201C, U+201D;
9+
unicode-range:
10+
U+5, U+20, U+21, U+24, U+25, U+26, U+27, U+2B-2E, U+30-3A, U+3F, U+41-5A, U+61-7A, U+D7,
11+
U+2019, U+201C, U+201D;
1112
font-weight: 200 900;
1213
font-display: swap;
1314
}

0 commit comments

Comments
 (0)