Skip to content

Commit 13a003d

Browse files
authored
Merge branch 'main' into use-toBeCallableWith
2 parents 9b8c129 + 5939c18 commit 13a003d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+3299
-1075
lines changed

.changeset/swift-bees-thank.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/two-hotels-cough.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

biome.json

Lines changed: 30 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
{
22
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3-
"organizeImports": { "enabled": false },
4-
"linter": { "enabled": false },
3+
"assist": { "actions": { "source": { "organizeImports": "off" } } },
4+
"linter": {
5+
"enabled": false,
6+
"rules": {
7+
"style": {
8+
"noParameterAssign": "error",
9+
"useAsConstAssertion": "error",
10+
"useDefaultParameterLast": "error",
11+
"useEnumInitializers": "error",
12+
"useSelfClosingElements": "error",
13+
"useSingleVarDeclarator": "error",
14+
"noUnusedTemplateLiteral": "error",
15+
"useNumberNamespace": "error",
16+
"noInferrableTypes": "error",
17+
"noUselessElse": "error"
18+
}
19+
}
20+
},
521
"vcs": {
622
"clientKind": "git",
723
"useIgnoreFile": true
@@ -14,17 +30,18 @@
1430
"lineEnding": "lf",
1531
"lineWidth": 80,
1632
"attributePosition": "auto",
17-
"ignore": [
18-
".next/",
19-
"coverage/",
20-
"**/node_modules/",
21-
"**/storybook-static",
22-
"**/dist/",
23-
"**/pnpm-lock.yaml",
24-
"**/package.json",
25-
"**/CHANGELOG.md",
26-
"*.snap",
27-
"**/__snapshots__/"
33+
"includes": [
34+
"**",
35+
"!**/.next/",
36+
"!**/coverage/",
37+
"!**/node_modules/",
38+
"!**/storybook-static",
39+
"!**/dist/",
40+
"!**/pnpm-lock.yaml",
41+
"!**/package.json",
42+
"!**/CHANGELOG.md",
43+
"!**/*.snap",
44+
"!**/__snapshots__/"
2845
]
2946
},
3047
"javascript": {

package.json

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"packages/*"
66
],
77
"type": "module",
8-
"packageManager": "pnpm@10.12.1",
8+
"packageManager": "pnpm@10.13.1",
99
"engines": {
1010
"node": ">=20.x",
1111
"pnpm": ">=9.x"
@@ -23,8 +23,10 @@
2323
"@commitlint/cli": "catalog:",
2424
"@commitlint/config-conventional": "catalog:",
2525
"@eslint/eslintrc": "catalog:",
26+
"@rudderstack/analytics-js": "catalog:",
2627
"@scaleway/eslint-config-react": "workspace:*",
2728
"@scaleway/tsconfig": "workspace:*",
29+
"@scaleway/use-segment": "catalog:",
2830
"@testing-library/jest-dom": "catalog:",
2931
"@testing-library/react": "catalog:",
3032
"@types/jest": "catalog:",
@@ -72,7 +74,12 @@
7274
"react-dom": "18 || 19",
7375
"@types/react": "18 || 19"
7476
}
75-
}
77+
},
78+
"onlyBuiltDependencies": [
79+
"@biomejs/biome",
80+
"esbuild",
81+
"unrs-resolver"
82+
]
7683
},
7784
"commitlint": {
7885
"extends": [

packages/changesets-renovate/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 2.2.1
4+
5+
### Patch Changes
6+
7+
- [#2639](https://github.com/scaleway/scaleway-lib/pull/2639) [`305b084`](https://github.com/scaleway/scaleway-lib/commit/305b0840229836dd77298a5ed4f48937e6e97245) Thanks [@philibea](https://github.com/philibea)! - update packages
8+
39
## 2.2.0
410

511
### Minor Changes

packages/changesets-renovate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/changesets-renovate",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Automatically create changesets for Renovate",
55
"type": "module",
66
"module": "./dist/index.js",

packages/cookie-consent/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @scaleway/cookie-consent
22

3+
## 2.0.11
4+
5+
### Patch Changes
6+
7+
- [`6a2956b`](https://github.com/scaleway/scaleway-lib/commit/6a2956b6b594139c87f12bf781e98ebc048bee27) Thanks [@philibea](https://github.com/philibea)! - add cookies to providers
8+
9+
## 2.0.10
10+
11+
### Patch Changes
12+
13+
- [#2639](https://github.com/scaleway/scaleway-lib/pull/2639) [`305b084`](https://github.com/scaleway/scaleway-lib/commit/305b0840229836dd77298a5ed4f48937e6e97245) Thanks [@philibea](https://github.com/philibea)! - update packages
14+
15+
- Updated dependencies [[`305b084`](https://github.com/scaleway/scaleway-lib/commit/305b0840229836dd77298a5ed4f48937e6e97245)]:
16+
- @scaleway/use-segment@1.1.11
17+
318
## 2.0.9
419

520
### Patch Changes

packages/cookie-consent/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/cookie-consent",
3-
"version": "2.0.9",
3+
"version": "2.0.11",
44
"description": "React provider to handle website end user consent cookie storage based on segment integrations",
55
"main": "./dist/index.cjs",
66
"type": "module",
@@ -52,6 +52,6 @@
5252
},
5353
"peerDependencies": {
5454
"react": "18.x || 19.x",
55-
"@scaleway/use-segment": "1.1.10"
55+
"@scaleway/use-segment": "1.1.11"
5656
}
5757
}

packages/eslint-config-react/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 5.2.10
4+
5+
### Patch Changes
6+
7+
- [#2639](https://github.com/scaleway/scaleway-lib/pull/2639) [`305b084`](https://github.com/scaleway/scaleway-lib/commit/305b0840229836dd77298a5ed4f48937e6e97245) Thanks [@philibea](https://github.com/philibea)! - update packages
8+
39
## 5.2.9
410

511
### Patch Changes

packages/eslint-config-react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@scaleway/eslint-config-react",
3-
"version": "5.2.9",
3+
"version": "5.2.10",
44
"description": "Scaleway React eslint shared config",
55
"keywords": [
66
"eslint",

0 commit comments

Comments
 (0)